]> git.lyx.org Git - lyx.git/blobdiff - src/insets/insetindex.h
* In the process of fixing the math background color bug, this commit transfer backgr...
[lyx.git] / src / insets / insetindex.h
index 78842a281aa1cf6cef8c8cdeb5cf9e65fbe19491..638825412cce397fb9d05c75d51952896eddf3c6 100644 (file)
 
 #include "insetcommand.h"
 
-struct LaTeXFeatures;
+
+namespace lyx {
+
+class LaTeXFeatures;
 
 /** Used to insert index labels
   */
@@ -24,13 +27,13 @@ public:
        ///
        InsetIndex(InsetCommandParams const &);
        ///
-       std::string const getScreenLabel(Buffer const &) const;
+       docstring const getScreenLabel(Buffer const &) const;
        ///
        EDITABLE editable() const { return IS_EDITABLE; }
        ///
-       InsetOld::Code lyxCode() const;
+       InsetBase::Code lyxCode() const;
        ///
-       int docbook(Buffer const &, std::ostream &,
+       int docbook(Buffer const &, odocstream &,
                    OutputParams const &) const;
 private:
        virtual std::auto_ptr<InsetBase> doClone() const {
@@ -48,15 +51,18 @@ public:
        ///
        EDITABLE editable() const { return NOT_EDITABLE; }
        ///
-       InsetOld::Code lyxCode() const;
+       InsetBase::Code lyxCode() const;
        ///
        bool display() const { return true; }
        ///
-       std::string const getScreenLabel(Buffer const &) const;
+       docstring const getScreenLabel(Buffer const &) const;
 private:
        virtual std::auto_ptr<InsetBase> doClone() const {
                return std::auto_ptr<InsetBase>(new InsetPrintIndex(params()));
        }
 };
 
+
+} // namespace lyx
+
 #endif