]> git.lyx.org Git - lyx.git/blobdiff - src/insets/insetmarginal.h
* src/LyXAction.C: mark goto-clear-bookmark as working without buffer
[lyx.git] / src / insets / insetmarginal.h
index 9b841f94426bc71ef8018966b3038fa6c917336e..5a50a637c37d1ce23fb1f8782216ccd7d93fa0f3 100644 (file)
@@ -16,6 +16,9 @@
 
 #include "insetfootlike.h"
 
+
+namespace lyx {
+
 /** The marginal note inset
 
 */
@@ -26,14 +29,20 @@ public:
        ///
        InsetBase::Code lyxCode() const { return InsetBase::MARGIN_CODE; }
        ///
-       int latex(Buffer const &, std::ostream &,
+       int latex(Buffer const &, odocstream &,
                  OutputParams const &) const;
        ///
-       std::string const editMessage() const;
+       int docbook(Buffer const &, odocstream &,
+                   OutputParams const & runparams) const;
+       ///
+       virtual docstring const editMessage() const;
 protected:
        InsetMarginal(InsetMarginal const &);
 private:
        virtual std::auto_ptr<InsetBase> doClone() const;
 };
 
+
+} // namespace lyx
+
 #endif