]> git.lyx.org Git - lyx.git/blobdiff - src/insets/insetlabel.h
ws changes only
[lyx.git] / src / insets / insetlabel.h
index 32a12788baf4e02076f2be54d2d0ed35b50e333f..c9db1eea302c6ef34df34707cc0932a3d5feb22e 100644 (file)
@@ -14,6 +14,7 @@
 
 
 #include "insetcommand.h"
+#include <boost/weak_ptr.hpp>
 
 class InsetLabel : public InsetCommand {
 public:
@@ -22,28 +23,26 @@ public:
        ///
        ~InsetLabel();
        ///
-       virtual std::auto_ptr<InsetBase> clone() const {
-               return std::auto_ptr<InsetBase>(new InsetLabel(params()));
-       }
+       std::auto_ptr<InsetBase> clone() const;
        ///
        virtual dispatch_result localDispatch(FuncRequest const & cmd);
        ///
-       string const getScreenLabel(Buffer const *) const { return getContents(); }
+       std::string const getScreenLabel(Buffer const &) const;
        ///
        EDITABLE editable() const { return IS_EDITABLE; }
        ///
        InsetOld::Code lyxCode() const { return InsetOld::LABEL_CODE; }
+       /// Appends \c list with this label
+       void getLabelList(Buffer const &, std::vector<std::string> & list) const;
        ///
-       void getLabelList(std::vector<string> &) const;
-       ///
-       int latex(Buffer const *, std::ostream &,
+       int latex(Buffer const &, std::ostream &,
                  LatexRunParams const &) const;
        ///
-       int ascii(Buffer const *, std::ostream &, int linelen) const;
+       int ascii(Buffer const &, std::ostream &, int linelen) const;
        ///
-       int linuxdoc(Buffer const *, std::ostream &) const;
+       int linuxdoc(Buffer const &, std::ostream &) const;
        ///
-       int docbook(Buffer const *, std::ostream &, bool mixcont) const;
+       int docbook(Buffer const &, std::ostream &, bool mixcont) const;
 };
 
 #endif