diff --git a/src/insets/insetgraphics.h b/src/insets/insetgraphics.h index 16498ef72e..6e00518c45 100644 --- a/src/insets/insetgraphics.h +++ b/src/insets/insetgraphics.h @@ -30,6 +30,7 @@ #include "sigc++/signal_system.h" class Dialogs; +class LyXImage; /// class InsetGraphics : public Inset, public SigC::Object { @@ -112,6 +113,10 @@ private: string const createLatexOptions() const; /// Convert the file if needed, and return the location of the file. string const prepareFile(Buffer const * buf) const; + /// The graphics cache handle. + mutable boost::shared_ptr cacheHandle; + /// is the pixmap initialized? + mutable bool imageLoaded; /// InsetGraphicsParams params; };