]> git.lyx.org Git - lyx.git/blobdiff - src/insets/insetmarginal.h
fix #832
[lyx.git] / src / insets / insetmarginal.h
index 26654106a674938493d1cea8e456e8bbe6b6acb5..e7551a9a6a39063ad0b75de3da1e6eb83161670b 100644 (file)
@@ -1,30 +1,30 @@
 // -*- C++ -*-
-/* This file is part of
- * ======================================================
- * 
- *           LyX, The Document Processor
+/**
+ * \file insetmarginal.h
+ * This file is part of LyX, the document processor.
+ * Licence details can be found in the file COPYING.
  *
- *           Copyright 1998 The LyX Team.
+ * \author Jürgen Vigna
+ * \author Lars Gullik Bjønnes
  *
- *======================================================
+ * Full author contact details are available in file CREDITS
  */
 
 #ifndef INSETMARGINAL_H
 #define INSETMARGINAL_H
 
-#ifdef __GNUG__
-#pragma interface
-#endif
 
 #include "insetfootlike.h"
 
 /** The marginal note inset
-  
+
 */
 class InsetMarginal : public InsetFootlike {
 public:
        ///
-       InsetMarginal();
+       InsetMarginal(BufferParams const &);
+       ///
+       InsetMarginal(InsetMarginal const &, bool same_id = false);
        ///
        Inset * clone(Buffer const &, bool same_id = false) const;
        ///
@@ -33,8 +33,6 @@ public:
        int latex(Buffer const *, std::ostream &, bool fragile, bool fp) const;
        ///
        string const editMessage() const;
-       ///
-       bool insertInsetAllowed(Inset * inset) const;
 };
 
 #endif