]> git.lyx.org Git - lyx.git/blobdiff - src/factory.h
Allow boldface and font size changing commands for unicode symbols in math.
[lyx.git] / src / factory.h
index 1c25480fdcd99f1eb7efee15161e7ebe72887a4c..3dd96f0683099ed7582dec5d61af02980709d4e1 100644 (file)
@@ -6,16 +6,27 @@
  *
  * \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;
+namespace lyx {
+
+class Buffer;
 class FuncRequest;
+class Inset;
+class Lexer;
+
 
 /// creates inset according to 'cmd'
-Inset * createInset(FuncRequest const & cmd);
+Inset * createInset(Buffer & buf, FuncRequest const & cmd);
+
+/// read inset from a file
+Inset * readInset(Lexer & lex, Buffer const & buf);
+
+
+} // namespace lyx
 
-#endif
+#endif // FACTORY_H