]> git.lyx.org Git - lyx.git/blobdiff - src/factory.h
Point fix, earlier forgotten
[lyx.git] / src / factory.h
index 1c25480fdcd99f1eb7efee15161e7ebe72887a4c..f9d76b39c50309825a1211446f3505a44d67b370 100644 (file)
@@ -6,16 +6,21 @@
  *
  * \author André Pönitz
  *
- * Full author contact details are available in file CREDITS
+ * Full author contact details are available in file CREDITS.
  */
 
 #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