X-Git-Url: https://git.lyx.org/gitweb/?a=blobdiff_plain;f=src%2Ffactory.h;h=d0873d6d81af9a82a5fca525ca8a30f140fe3a25;hb=35204f8f33d7400a5fefeffea533fb4cb4097211;hp=772f28b0222024a7fb6d617f0581aabed792d7e5;hpb=b4f4f487d138f0a1ee797b245d596a254faa2731;p=lyx.git diff --git a/src/factory.h b/src/factory.h index 772f28b022..d0873d6d81 100644 --- a/src/factory.h +++ b/src/factory.h @@ -6,21 +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 InsetBase; class LyXLex; -class Buffer; + /// creates inset according to 'cmd' -Inset * createInset(FuncRequest const & cmd); +InsetBase * createInset(BufferView * bv, FuncRequest const & cmd); /// read inset from a file -Inset * readInset(LyXLex & lex, Buffer const & buf); +InsetBase * readInset(LyXLex & lex, Buffer const & buf); + + +} // namespace lyx #endif // FACTORY_H