]> git.lyx.org Git - lyx.git/blobdiff - src/factory.h
fix a visual cursor edge-case:
[lyx.git] / src / factory.h
index d1a6d5e32efddd01d59b0302dcc93f8db101d806..3dd96f0683099ed7582dec5d61af02980709d4e1 100644 (file)
 #ifndef FACTORY_H
 #define FACTORY_H
 
+namespace lyx {
+
 class Buffer;
-class BufferView;
 class FuncRequest;
-class InsetOld;
-class LyXLex;
+class Inset;
+class Lexer;
 
 
 /// creates inset according to 'cmd'
-InsetOld * createInset(BufferView * bv, FuncRequest const & cmd);
+Inset * createInset(Buffer & buf, FuncRequest const & cmd);
 
 /// read inset from a file
-InsetOld * readInset(LyXLex & lex, Buffer const & buf);
+Inset * readInset(Lexer & lex, Buffer const & buf);
+
+
+} // namespace lyx
 
 #endif // FACTORY_H