X-Git-Url: https://git.lyx.org/gitweb/?a=blobdiff_plain;f=src%2Fmathed%2Fmath_spaceinset.h;h=f1df47da597a7ea1fd14c807c7daf300036307c9;hb=4590c8cfab02a3bc56813cfb1f2e80bd1119af9e;hp=31343c3fed6e021306d52d5ebed345711c3c51ef;hpb=84b7ffa3473faa9cfe66a974d2e0a5f9d6641187;p=lyx.git diff --git a/src/mathed/math_spaceinset.h b/src/mathed/math_spaceinset.h index 31343c3fed..f1df47da59 100644 --- a/src/mathed/math_spaceinset.h +++ b/src/mathed/math_spaceinset.h @@ -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