]> git.lyx.org Git - lyx.git/blobdiff - src/insets/insetnote.h
Copyright notices
[lyx.git] / src / insets / insetnote.h
index 5def38e637c8022609ac35f964508768045ad6e3..5a4e9414060f267e65618245d0aeeb1604738198 100644 (file)
@@ -1,12 +1,12 @@
 // -*- C++ -*-
-/* This file is part of
- * ======================================================
- * 
- *           LyX, The Document Processor
+/**
+ * \file insetnote.h
+ * This file is part of LyX, the document processor.
+ * Licence details can be found in the file COPYING.
  *
- *           Copyright 2001 The LyX Team.
+ * \author Angus Leeming
  *
- *======================================================
+ * Full author contact details are available in file CREDITS
  */
 
 #ifndef INSETNOTE_H
 #include "insetcollapsable.h"
 
 /** The PostIt note inset
-  
+
 */
 class InsetNote : public InsetCollapsable {
 public:
-       /// 
-       InsetNote();
+       ///
+       InsetNote(BufferParams const &);
        ///
        InsetNote(InsetNote const &, bool same_id = false);
        ///
@@ -34,13 +34,22 @@ public:
        ///
        string const editMessage() const;
        ///
-       Inset::Code lyxCode() const { return Inset::IGNORE_CODE; }
+       Inset::Code lyxCode() const { return Inset::NOTE_CODE; }
        ///
        void write(Buffer const *, std::ostream &) const;
        ///
        int latex(Buffer const *, std::ostream &, bool, bool) const
                { return 0; }
        ///
+       int linuxdoc(Buffer const *, std::ostream &) const
+               { return 0; }
+       ///
+       int docbook(Buffer const *, std::ostream &, bool) const
+               { return 0; }
+       ///
+       int ascii(Buffer const *, std::ostream &, int) const
+               { return 0; }
+       ///
        void validate(LaTeXFeatures &) const {}
 private:
        /// used by the constructors