]> git.lyx.org Git - lyx.git/blobdiff - src/insets/insetoptarg.h
Enable the external inset to handle unknown templates gracefully.
[lyx.git] / src / insets / insetoptarg.h
index bff64d22b6b4b222f35bcc96206753dc9d701a09..4c3fec130615e77d727b1300a6d1301c646d315b 100644 (file)
@@ -1,18 +1,17 @@
 // -*- 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"
@@ -26,11 +25,9 @@ class InsetOptArg : public InsetCollapsable {
 public:
        InsetOptArg(BufferParams const &);
 
-       InsetOptArg(InsetOptArg const &, bool same_id = false);
-
+       InsetOptArg(InsetOptArg const &);
        /// make a duplicate of this inset
-       Inset * clone(Buffer const &, bool same_id = false) const;
-
+       Inset * clone() const;
        /// this inset is editable
        EDITABLE editable() const { return IS_EDITABLE; }
        /// code of the inset
@@ -40,10 +37,10 @@ public:
 
        /// Standard LaTeX output -- short-circuited
        int latex(Buffer const *, std::ostream &,
-                                       bool fragile, bool fp) const;
+                 LatexRunParams const &) const;
        /// Outputting the optional parameter of a LaTeX command
        int latexOptional(Buffer const *, std::ostream &,
-                                       bool fragile, bool fp) const;
+                         LatexRunParams const &) const;
        /// Write out tothe .lyx file
        void write(Buffer const * buf, std::ostream & os) const;
 };