X-Git-Url: https://git.lyx.org/gitweb/?a=blobdiff_plain;f=src%2Ffactory.h;h=ae2265e674571a04c3ff2868fde6e24f41cdce79;hb=294e4884ee29585d311177406cd31499e6d81877;hp=65da9ce2c609f1518579c4089c10f73df6c632c1;hpb=ea8e13cd2f4c036a7f18e87ab6b7eeb702d2046b;p=lyx.git diff --git a/src/factory.h b/src/factory.h index 65da9ce2c6..ae2265e674 100644 --- a/src/factory.h +++ b/src/factory.h @@ -1,21 +1,32 @@ // -*- C++ -*- -/* This file is part of - * ====================================================== +/** + * \file factory.h + * This file is part of LyX, the document processor. + * Licence details can be found in the file COPYING. * - * LyX, The Document Processor + * \author André Pönitz * - * Copyright 2002 The LyX Team. - * - * ====================================================== */ + * 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); + -#endif +} // namespace lyx +#endif // FACTORY_H