X-Git-Url: https://git.lyx.org/gitweb/?a=blobdiff_plain;f=src%2Ffactory.h;h=3dd96f0683099ed7582dec5d61af02980709d4e1;hb=ea6aed5b8bf38366aaa1eb15ce1b9f13de76987f;hp=811c78c84a8f003ba80fa5fef8095cc52c732fd8;hpb=39e79d8602920eefe36e898c9f415afb979521b2;p=lyx.git diff --git a/src/factory.h b/src/factory.h index 811c78c84a..3dd96f0683 100644 --- a/src/factory.h +++ b/src/factory.h @@ -15,17 +15,16 @@ namespace lyx { class Buffer; -class BufferView; class FuncRequest; -class InsetBase; +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(Lexer & lex, Buffer const & buf); +Inset * readInset(Lexer & lex, Buffer const & buf); } // namespace lyx