]> git.lyx.org Git - lyx.git/blobdiff - src/insets/insetlabel.h
clear()->erase() ; lots of using directives for cxx
[lyx.git] / src / insets / insetlabel.h
index 92c8b43003ecebc9464693412edaa8beca5465b2..62196b7d8014c01f28e986616a15847ae7db77c1 100644 (file)
 #include "insetcommand.h"
 #include "LString.h"
 
-using std::ostream;
-
 ///
 class InsetLabel : public InsetCommand {
 public:
        ///
+       explicit
        InsetLabel(string const & cmd);
        ///
        InsetLabel() : InsetCommand("label") {}
@@ -41,11 +40,13 @@ public:
        ///
        EDITABLE Editable() const { return NOT_EDITABLE; }
        ///
-       int Latex(ostream &, signed char fragile, bool free_spc) const;
+       int Latex(std::ostream &, bool fragile, bool free_spc) const;
+       ///
+       int Ascii(std::ostream &) const;
        ///
-       int Linuxdoc(ostream &) const;
+       int Linuxdoc(std::ostream &) const;
        ///
-       int DocBook(ostream &) const;
+       int DocBook(std::ostream &) const;
 private:
        /// This function escapes 8-bit characters
        string escape(string const &) const;