]> git.lyx.org Git - lyx.git/blobdiff - src/mathed/InsetMathTabular.h
Fix comment according to Enricos explanation
[lyx.git] / src / mathed / InsetMathTabular.h
index da12246d6d82ab2ec4e3c3b22dac50f6295ab205..13b4960e50d89df3a9c2aa5c5061d5d42eafd3e7 100644 (file)
 #include "InsetMathGrid.h"
 
 
+namespace lyx {
+
+
 /// Inset for things like \begin{tabular}...\end{tabular}
 class InsetMathTabular : public InsetMathGrid {
 public:
        ///
-       InsetMathTabular(std::string const &, int m, int n);
+       InsetMathTabular(docstring const &, int m, int n);
        ///
-       InsetMathTabular(std::string const &, int m, int n,
-               char valign, std::string const & halign);
+       InsetMathTabular(docstring const &, int m, int n,
+               char valign, docstring const & halign);
        ///
-       InsetMathTabular(std::string const &, char valign, std::string const & halign);
+       InsetMathTabular(docstring const &, char valign, docstring const & halign);
        ///
        void metrics(MetricsInfo & mi, Dimension & dim) const;
        ///
@@ -37,7 +40,7 @@ public:
        ///
        void write(WriteStream & os) const;
        ///
-       void infoize(std::ostream & os) const;
+       void infoize(odocstream & os) const;
        ///
        void normalize(NormalStream &) const;
        ///
@@ -46,7 +49,9 @@ public:
 private:
        virtual std::auto_ptr<InsetBase> doClone() const;
        ///
-       std::string name_;
+       docstring name_;
 };
 
+} // namespace lyx
+
 #endif