]> git.lyx.org Git - lyx.git/blobdiff - src/mathed/math_xymatrixinset.h
Fix.
[lyx.git] / src / mathed / math_xymatrixinset.h
index bfebb04da2d7d3e29abe1ab7516ca86ad70bf91d..32f16f9f37a0edfc472aacfc31e18aef2e468cce 100644 (file)
@@ -4,28 +4,31 @@
 
 #include "math_gridinset.h"
 
-#ifdef __GNUG__
-#pragma interface
-#endif
 
 
 class MathXYMatrixInset : public MathGridInset {
-public: 
+public:
        ///
        MathXYMatrixInset();
        ///
        MathInset * clone() const;
        ///
-       void metrics(MathMetricsInfo const & st) const;
+       void metrics(MathMetricsInfo & st) const;
+       ///
+       MathXYMatrixInset const * asXYMatrixInset() const { return this; }
        ///
-       MathXYMatrixInset * asXYMatrixInset() { return this; }
+       virtual int colsep() const;
+       ///
+       virtual int rowsep() const;
 
+       ///
+       void normalize();
        ///
        void write(WriteStream & os) const;
        ///
        void normalize(NormalStream &) const;
        ///
-       void maplize(MapleStream &) const;
+       void maple(MapleStream &) const;
 };
 
 #endif