X-Git-Url: https://git.lyx.org/gitweb/?a=blobdiff_plain;f=src%2Ffactory.h;h=3dd96f0683099ed7582dec5d61af02980709d4e1;hb=4056f0ddb150d0e5d60bc5941d51e365eed0ac86;hp=d1a6d5e32efddd01d59b0302dcc93f8db101d806;hpb=70d0ba900118ac7e253c1e1969fd7a3d64ec8e03;p=lyx.git diff --git a/src/factory.h b/src/factory.h index d1a6d5e32e..3dd96f0683 100644 --- a/src/factory.h +++ b/src/factory.h @@ -12,17 +12,21 @@ #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