X-Git-Url: https://git.lyx.org/gitweb/?a=blobdiff_plain;f=src%2Ffactory.h;h=65d33b6db0b67dbe13b7a1129ee2456976c35c38;hb=c1b155fbe87ce9bacab931edfcaaf21a447b6430;hp=8a4a53dc86c16b6efb24aa8c6c48195c65ce0063;hpb=df71b75d4a19b80cd6f1b3359982a1c06fefe4b5;p=lyx.git diff --git a/src/factory.h b/src/factory.h index 8a4a53dc86..65d33b6db0 100644 --- a/src/factory.h +++ b/src/factory.h @@ -6,17 +6,28 @@ * * \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 BufferView; class FuncRequest; +class Inset; +class Lexer; + /// creates inset according to 'cmd' -Inset * createInset(FuncRequest const & cmd); +Inset * createInset(BufferView * bv, FuncRequest const & cmd); + +/// read inset from a file +Inset * readInset(Lexer & lex, Buffer const & buf); + -#endif +} // namespace lyx +#endif // FACTORY_H