]> git.lyx.org Git - lyx.git/blobdiff - src/factory.h
Point fix, earlier forgotten
[lyx.git] / src / factory.h
index 65da9ce2c609f1518579c4089c10f73df6c632c1..f9d76b39c50309825a1211446f3505a44d67b370 100644 (file)
@@ -1,21 +1,26 @@
 // -*- C++ -*-
-/* This file is part of
- * ======================================================
+/**
+ * \file factory.h
+ * This file is part of LyX, the document processor.
+ * Licence details can be found in the file COPYING.
  *
- *           LyX, The Document Processor
+ * \author André Pönitz
  *
- *           Copyright 2002 The LyX Team.
- *
- * ====================================================== */
+ * 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