]> git.lyx.org Git - lyx.git/blobdiff - src/factory.h
Revert unintended commit.
[lyx.git] / src / factory.h
index 1f9e0a7913ed430cf9fd746f8d117970c8c21e13..3b792acf373199d819a5d7e2bafbfb2845c626cf 100644 (file)
@@ -4,23 +4,29 @@
  * This file is part of LyX, the document processor.
  * Licence details can be found in the file COPYING.
  *
- * \author André Pönitz
+ * \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 InsetOld;
-class FuncRequest;
-class LyXLex;
+namespace lyx {
+
 class Buffer;
+class FuncRequest;
+class Inset;
+class Lexer;
+
 
 /// creates inset according to 'cmd'
-InsetOld * createInset(FuncRequest const & cmd);
+Inset * createInset(Buffer & buf, FuncRequest const & cmd);
 
 /// read inset from a file
-InsetOld * readInset(LyXLex & lex, Buffer const & buf);
+Inset * readInset(Lexer & lex, Buffer const & buf);
+
+
+} // namespace lyx
 
 #endif // FACTORY_H