]> 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 a3f0614d75128f3f8801068fadd9c5e30181322f..62196b7d8014c01f28e986616a15847ae7db77c1 100644 (file)
@@ -5,7 +5,7 @@
  *           LyX, The Document Processor
  *      
  *           Copyright 1995 Matthias Ettrich
- *           Copyright 1995-1999 The LyX Team
+ *           Copyright 1995-2000 The LyX Team
  *
  * ====================================================== */
 
@@ -23,6 +23,7 @@
 class InsetLabel : public InsetCommand {
 public:
        ///
+       explicit
        InsetLabel(string const & cmd);
        ///
        InsetLabel() : InsetCommand("label") {}
@@ -39,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 Linuxdoc(ostream &) const;
+       int Ascii(std::ostream &) const;
        ///
-       int DocBook(ostream &) const;
+       int Linuxdoc(std::ostream &) const;
+       ///
+       int DocBook(std::ostream &) const;
 private:
        /// This function escapes 8-bit characters
        string escape(string const &) const;