]> git.lyx.org Git - lyx.git/blobdiff - src/tabular.h
and back to cvs
[lyx.git] / src / tabular.h
index c74ef8ee19f2580c8f0eaa8def5df054647fb3e5..8e4ddce6de609a4fe50b9816edde7e7b2954764a 100644 (file)
@@ -161,8 +161,6 @@ public:
     explicit
     LyXTabular(Buffer const *, InsetTabular *, LyXLex & lex);
     ///
-    ~LyXTabular();
-    ///
     LyXTabular & operator=(LyXTabular const &);
     ///
     LyXTabular * Clone(InsetTabular *);
@@ -280,6 +278,8 @@ public:
     ///
     int Latex(Buffer const *, std::ostream &, bool, bool) const;
     ///
+    int DocBook(Buffer const * buf, std::ostream & os) const;
+    ///
     // helper function for Latex returns number of newlines
     ///
     int AsciiTopHLine(std::ostream &, int row,
@@ -460,9 +460,9 @@ private: //////////////////////////////////////////////////////////////////
     ///
     int numberofcells;
     ///
-    int * rowofcell;
+    std::vector<int> rowofcell;
     ///
-    int * columnofcell;
+    std::vector<int> columnofcell;
     ///
     row_vector row_info;
     ///