X-Git-Url: https://git.lyx.org/gitweb/?a=blobdiff_plain;f=src%2Ffactory.h;h=ae2265e674571a04c3ff2868fde6e24f41cdce79;hb=3929a71cd0362cea6ca4ea0f7135ad524cfc8309;hp=1f9e0a7913ed430cf9fd746f8d117970c8c21e13;hpb=2e57f2ff0ae7cd4a6efbf634ffe6d2f4379d9cfc;p=lyx.git diff --git a/src/factory.h b/src/factory.h index 1f9e0a7913..ae2265e674 100644 --- a/src/factory.h +++ b/src/factory.h @@ -4,23 +4,29 @@ * 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 + * Full author contact details are available in file CREDITS. */ #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