]> git.lyx.org Git - lyx.git/blobdiff - src/factory.h
More 'standard conformant blurb' nonsense.
[lyx.git] / src / factory.h
index 8a4a53dc86c16b6efb24aa8c6c48195c65ce0063..1f9e0a7913ed430cf9fd746f8d117970c8c21e13 100644 (file)
 #ifndef FACTORY_H
 #define FACTORY_H
 
-class Inset;
+class InsetOld;
 class FuncRequest;
+class LyXLex;
+class Buffer;
 
 /// creates inset according to 'cmd'
-Inset * createInset(FuncRequest const & cmd);
+InsetOld * createInset(FuncRequest const & cmd);
 
-#endif
+/// read inset from a file
+InsetOld * readInset(LyXLex & lex, Buffer const & buf);
 
+#endif // FACTORY_H