X-Git-Url: https://git.lyx.org/gitweb/?a=blobdiff_plain;f=src%2Ffactory.h;h=ae2265e674571a04c3ff2868fde6e24f41cdce79;hb=c26c7602e4b5139ad8a98e77d97cf47ba67588d2;hp=f9d76b39c50309825a1211446f3505a44d67b370;hpb=0be0fcfd5907d448cd51addf83ed7032719a0692;p=lyx.git diff --git a/src/factory.h b/src/factory.h index f9d76b39c5..ae2265e674 100644 --- a/src/factory.h +++ b/src/factory.h @@ -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. */ @@ -12,15 +12,21 @@ #ifndef FACTORY_H #define FACTORY_H -class InsetOld; -class FuncRequest; -class LyXLex; +namespace lyx { + class Buffer; +class FuncRequest; +class Inset; +class Lexer; + /// creates inset according to 'cmd' -InsetOld * createInset(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 * buf); + + +} // namespace lyx #endif // FACTORY_H