]> git.lyx.org Git - lyx.git/blobdiff - src/factory.h
rename MathArray into MathData
[lyx.git] / src / factory.h
index 772f28b0222024a7fb6d617f0581aabed792d7e5..811c78c84a8f003ba80fa5fef8095cc52c732fd8 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 Inset;
-class FuncRequest;
-class LyXLex;
+namespace lyx {
+
 class Buffer;
+class BufferView;
+class FuncRequest;
+class InsetBase;
+class Lexer;
+
 
 /// creates inset according to 'cmd'
-Inset * createInset(FuncRequest const & cmd);
+InsetBase * createInset(BufferView * bv, FuncRequest const & cmd);
 
 /// read inset from a file
-Inset * readInset(LyXLex & lex, Buffer const & buf);
+InsetBase * readInset(Lexer & lex, Buffer const & buf);
+
+
+} // namespace lyx
 
 #endif // FACTORY_H