]> git.lyx.org Git - lyx.git/blobdiff - src/insets/insetoptarg.h
My patch from yesterday
[lyx.git] / src / insets / insetoptarg.h
index a413d40202f16c089ddf960ed9dc6726895212ee..8fea596408d01a707c36f35d009178acee399fe9 100644 (file)
@@ -1,22 +1,22 @@
 // -*- C++ -*-
 /**
  * \file insetoptarg.h
- * Copyright 2002 the LyX Team
- * Read the file COPYING
+ * This file is part of LyX, the document processor.
+ * Licence details can be found in the file COPYING.
  *
- * \author Martin Vermeer  <martin.vermeer@hut.fi>
+ * \author Martin Vermeer
+ *
+ * Full author contact details are available in file CREDITS
  */
 
 #ifndef INSETOPTARG_H
 #define INSETOPTARG_H
 
-#ifdef __GNUG__
-#pragma interface
-#endif
 
 #include "insettext.h"
 #include "insetcollapsable.h"
 
+
 /**
  * InsetOptArg. Used to insert a short version of sectioning header etc.
  * automatically, or other optional LaTeX arguments
@@ -29,14 +29,14 @@ public:
 
        /// make a duplicate of this inset
        Inset * clone(Buffer const &, bool same_id = false) const;
+
        /// this inset is editable
        EDITABLE editable() const { return IS_EDITABLE; }
        /// code of the inset
        Inset::Code lyxCode() const { return Inset::OPTARG_CODE; }
        /// return an message upon editing
        string const editMessage() const;
+
        /// Standard LaTeX output -- short-circuited
        int latex(Buffer const *, std::ostream &,
                                        bool fragile, bool fp) const;
@@ -44,7 +44,7 @@ public:
        int latexOptional(Buffer const *, std::ostream &,
                                        bool fragile, bool fp) const;
        /// Write out tothe .lyx file
-       void write(Buffer const * buf, ostream & os) const;
+       void write(Buffer const * buf, std::ostream & os) const;
 };
 
 #endif // INSETOPTARG_H