]> git.lyx.org Git - lyx.git/blobdiff - src/factory.h
fix typo in commit 16925
[lyx.git] / src / factory.h
index 1f9e0a7913ed430cf9fd746f8d117970c8c21e13..d0873d6d81af9a82a5fca525ca8a30f140fe3a25 100644 (file)
@@ -6,21 +6,28 @@
  *
  * \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;
+namespace lyx {
+
+class Buffer;
+class BufferView;
 class FuncRequest;
+class InsetBase;
 class LyXLex;
-class Buffer;
+
 
 /// creates inset according to 'cmd'
-InsetOld * createInset(FuncRequest const & cmd);
+InsetBase * createInset(BufferView * bv, FuncRequest const & cmd);
 
 /// read inset from a file
-InsetOld * readInset(LyXLex & lex, Buffer const & buf);
+InsetBase * readInset(LyXLex & lex, Buffer const & buf);
+
+
+} // namespace lyx
 
 #endif // FACTORY_H