]> git.lyx.org Git - lyx.git/blobdiff - src/factory.h
Fix text direction issue for InsetInfo in RTL context
[lyx.git] / src / factory.h
index 0c7ec876009fca605b3b09b5aab217bc7cdaecc3..ae2265e674571a04c3ff2868fde6e24f41cdce79 100644 (file)
@@ -4,7 +4,7 @@
  * 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.
  */
 #ifndef FACTORY_H
 #define FACTORY_H
 
+namespace lyx {
+
 class Buffer;
-class BufferView;
 class FuncRequest;
-class InsetBase;
-class LyXLex;
+class Inset;
+class Lexer;
 
 
 /// creates inset according to 'cmd'
-InsetBase * createInset(BufferView * bv, FuncRequest const & cmd);
+Inset * createInset(Buffer * buf, FuncRequest const & cmd);
 
 /// read inset from a file
-InsetBase * readInset(LyXLex & lex, Buffer const & buf);
+Inset * readInset(Lexer & lex, Buffer * buf);
+
+
+} // namespace lyx
 
 #endif // FACTORY_H