X-Git-Url: https://git.lyx.org/gitweb/?a=blobdiff_plain;f=src%2Ffactory.h;h=ae2265e674571a04c3ff2868fde6e24f41cdce79;hb=7d4292918e6bf66649229e2946e6ac0a30694494;hp=d0873d6d81af9a82a5fca525ca8a30f140fe3a25;hpb=6c300f72a217722652dc27db9108e1050028979c;p=lyx.git diff --git a/src/factory.h b/src/factory.h index d0873d6d81..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. */ @@ -15,17 +15,16 @@ namespace lyx { class Buffer; -class BufferView; class FuncRequest; -class InsetBase; -class LyXLex; +class Inset; +class Lexer; /// creates inset according to 'cmd' -InsetBase * createInset(BufferView * bv, FuncRequest const & cmd); +Inset * createInset(Buffer * buf, FuncRequest const & cmd); /// read inset from a file -InsetBase * readInset(LyXLex & lex, Buffer const & buf); +Inset * readInset(Lexer & lex, Buffer * buf); } // namespace lyx