]> git.lyx.org Git - lyx.git/blobdiff - src/factory.h
Limit the nopassthurchars case in beamer to URL
[lyx.git] / src / factory.h
index 8a4a53dc86c16b6efb24aa8c6c48195c65ce0063..4ee9fb60f0576e08c70df4b5eaa0be5447fb20af 100644 (file)
@@ -4,19 +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 Inset;
+namespace lyx {
+
+class Buffer;
 class FuncRequest;
+class Inset;
+
+namespace support { 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(support::Lexer & lex, Buffer * buf);
+
 
-#endif
+} // namespace lyx
 
+#endif // FACTORY_H