]> git.lyx.org Git - lyx.git/blobdiff - src/insets/insethfill.h
hopefully fix tex2lyx linking.
[lyx.git] / src / insets / insethfill.h
index 15a5a1f9084f0f573099d8823ffea9ade89e87d1..3bfa98ffc3cff83076693c96510d5088ceaa3dc4 100644 (file)
@@ -15,6 +15,9 @@
 
 #include "insetcommand.h"
 
+
+namespace lyx {
+
 class InsetHFill : public InsetCommand {
 public:
        ///
@@ -22,17 +25,14 @@ public:
        ///
        void metrics(MetricsInfo &, Dimension &) const;
        ///
-       lyx::docstring const getScreenLabel(Buffer const &) const;
+       docstring const getScreenLabel(Buffer const &) const;
        ///
        InsetBase::Code lyxCode() const { return InsetBase::HFILL_CODE; }
        ///
-       int latex(Buffer const &, lyx::odocstream &,
-                 OutputParams const &) const;
-       ///
-       int plaintext(Buffer const &, lyx::odocstream &,
+       int plaintext(Buffer const &, odocstream &,
                  OutputParams const & runparams) const;
        ///
-       int docbook(Buffer const &, lyx::odocstream &,
+       int docbook(Buffer const &, odocstream &,
                    OutputParams const & runparams) const;
        ///
        void write(Buffer const & buf, std::ostream & os) const;
@@ -45,4 +45,7 @@ private:
        virtual std::auto_ptr<InsetBase> doClone() const;
 };
 
+
+} // namespace lyx
+
 #endif