]> git.lyx.org Git - lyx.git/blobdiff - src/factory.h
Limit the nopassthurchars case in beamer to URL
[lyx.git] / src / factory.h
index 3dd96f0683099ed7582dec5d61af02980709d4e1..4ee9fb60f0576e08c70df4b5eaa0be5447fb20af 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.
  */
@@ -17,14 +17,14 @@ namespace lyx {
 class Buffer;
 class FuncRequest;
 class Inset;
-class Lexer;
 
+namespace support { class Lexer; }
 
 /// creates inset according to 'cmd'
-Inset * createInset(Buffer & buf, FuncRequest const & cmd);
+Inset * createInset(Buffer * buf, FuncRequest const & cmd);
 
 /// read inset from a file
-Inset * readInset(Lexer & lex, Buffer const & buf);
+Inset * readInset(support::Lexer & lex, Buffer * buf);
 
 
 } // namespace lyx