]> git.lyx.org Git - lyx.git/blobdiff - src/mathed/math_spaceinset.h
update libtool
[lyx.git] / src / mathed / math_spaceinset.h
index 31343c3fed6e021306d52d5ebed345711c3c51ef..f1df47da597a7ea1fd14c807c7daf300036307c9 100644 (file)
@@ -1,11 +1,16 @@
+// -*- C++ -*-
 #ifndef MATH_SPACEINSET_H
 #define MATH_SPACEINSET_H
 
 #include "math_inset.h"
 #include "math_defs.h"
 
+#ifdef __GNUG__
+#pragma interface
+#endif
+
 /// Smart spaces
-class MathSpaceInset: public MathedInset  {
+class MathSpaceInset : public MathedInset {
 public:
        ///
        MathSpaceInset(int sp, short ot = LM_OT_SPACE, short st = LM_ST_TEXT);
@@ -16,13 +21,15 @@ public:
        ///
        void Write(std::ostream &, bool fragile);
        ///
+       void WriteNormal(std::ostream &);
+       ///
        void Metrics();
        ///
        void SetSpace(int sp);
        ///
        int GetSpace();
-protected:
+private:
        ///
-       int space;
+       int space_;
 };
 #endif