X-Git-Url: https://git.lyx.org/gitweb/?a=blobdiff_plain;f=src%2Ffactory.h;h=ae2265e674571a04c3ff2868fde6e24f41cdce79;hb=26910d5ec49395d1372dd5b9259f1bf6ed23de0a;hp=1c25480fdcd99f1eb7efee15161e7ebe72887a4c;hpb=13349032cb4dc8ef44146aa652ff6bbff6698249;p=lyx.git diff --git a/src/factory.h b/src/factory.h index 1c25480fdc..ae2265e674 100644 --- a/src/factory.h +++ b/src/factory.h @@ -4,18 +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 Inset; +namespace lyx { + +class Buffer; class FuncRequest; +class Inset; +class Lexer; + /// creates inset according to 'cmd' -Inset * createInset(FuncRequest const & cmd); +Inset * createInset(Buffer * buf, FuncRequest const & cmd); + +/// read inset from a file +Inset * readInset(Lexer & lex, Buffer * buf); + + +} // namespace lyx -#endif +#endif // FACTORY_H