]> git.lyx.org Git - lyx.git/blob - src/factory.h
split LyXText::rowlist_ into individual Paragraph::rows_ chunks
[lyx.git] / src / factory.h
1 // -*- C++ -*-
2 /**
3  * \file factory.h
4  * This file is part of LyX, the document processor.
5  * Licence details can be found in the file COPYING.
6  *
7  * \author André Pönitz
8  *
9  * Full author contact details are available in file CREDITS
10  */
11
12 #ifndef FACTORY_H
13 #define FACTORY_H
14
15 class InsetOld;
16 class FuncRequest;
17 class LyXLex;
18 class Buffer;
19
20 /// creates inset according to 'cmd'
21 InsetOld * createInset(FuncRequest const & cmd);
22
23 /// read inset from a file
24 InsetOld * readInset(LyXLex & lex, Buffer const & buf);
25
26 #endif // FACTORY_H