]> git.lyx.org Git - lyx.git/blobdiff - src/tabular.h
* Painter.h:
[lyx.git] / src / tabular.h
index b1be68f7ff04e6fef9fc7d3dd426a056faef5bfd..24e24da4af4aeff3a74a30c4770face094599c8d 100644 (file)
@@ -23,6 +23,9 @@
 #include <iosfwd>
 #include <vector>
 
+
+namespace lyx {
+
 class InsetTabular;
 class LCursor;
 class OutputParams;
@@ -310,13 +313,11 @@ public:
        ///
        void read(Buffer const &, LyXLex &);
        ///
-       int latex(Buffer const &, lyx::odocstream &,
-                 OutputParams const &) const;
+       int latex(Buffer const &, odocstream &, OutputParams const &) const;
        //
-       int docbook(Buffer const & buf, std::ostream & os,
-                   OutputParams const &) const;
+       int docbook(Buffer const & buf, odocstream & os, OutputParams const &) const;
        ///
-       int plaintext(Buffer const &, lyx::odocstream &,
+       int plaintext(Buffer const &, odocstream &,
                  OutputParams const & runparams,
                  int const depth,
                  bool onlydata, unsigned char delim) const;
@@ -587,37 +588,37 @@ public:
        ///
        // helper function for Latex returns number of newlines
        ///
-       int TeXTopHLine(lyx::odocstream &, row_type row) const;
+       int TeXTopHLine(odocstream &, row_type row) const;
        ///
-       int TeXBottomHLine(lyx::odocstream &, row_type row) const;
+       int TeXBottomHLine(odocstream &, row_type row) const;
        ///
-       int TeXCellPreamble(lyx::odocstream &, idx_type cell) const;
+       int TeXCellPreamble(odocstream &, idx_type cell) const;
        ///
-       int TeXCellPostamble(lyx::odocstream &, idx_type cell) const;
+       int TeXCellPostamble(odocstream &, idx_type cell) const;
        ///
-       int TeXLongtableHeaderFooter(lyx::odocstream &, Buffer const & buf,
+       int TeXLongtableHeaderFooter(odocstream &, Buffer const & buf,
                                     OutputParams const &) const;
        ///
        bool isValidRow(row_type const row) const;
        ///
-       int TeXRow(lyx::odocstream &, row_type const row, Buffer const & buf,
+       int TeXRow(odocstream &, row_type const row, Buffer const & buf,
                   OutputParams const &) const;
        ///
        // helper function for ASCII returns number of newlines
        ///
-       int asciiTopHLine(lyx::odocstream &, row_type row,
+       int asciiTopHLine(odocstream &, row_type row,
                          std::vector<unsigned int> const &) const;
        ///
-       int asciiBottomHLine(lyx::odocstream &, row_type row,
+       int asciiBottomHLine(odocstream &, row_type row,
                             std::vector<unsigned int> const &) const;
        ///
-       int asciiPrintCell(Buffer const &, lyx::odocstream &,
+       int asciiPrintCell(Buffer const &, odocstream &,
                           OutputParams const &,
                           idx_type cell, row_type row, col_type column,
                           std::vector<unsigned int> const &,
                                           bool onlydata) const;
        /// auxiliary function for docbook
-       int docbookRow(Buffer const & buf, std::ostream & os, row_type,
+       int docbookRow(Buffer const & buf, odocstream & os, row_type,
                       OutputParams const &) const;
 
 private:
@@ -625,4 +626,7 @@ private:
        void fixCellNums();
 };
 
+
+} // namespace lyx
+
 #endif