]> git.lyx.org Git - features.git/blobdiff - src/mathed/math_funcinset.h
mathed cleanup, change mask for tmpdir
[features.git] / src / mathed / math_funcinset.h
index 3758907e885ec07f5ed5dfd520e0c9f2958911e1..e9b80aadaf0fdf5bfe559e81e44dcddd7b13722b 100644 (file)
@@ -1,21 +1,24 @@
+// -*- C++ -*-
 #ifndef MATH_FUNCINSET_H
 #define MATH_FUNCINSET_H
 
 #include "math_inset.h"
 #include "math_defs.h"
 
+#ifdef __GNUG__
+#pragma interface
+#endif
+
 /**
  Functions or LaTeX names for objects that I don't know how to draw.
  */
-class MathFuncInset: public MathedInset  {
+class MathFuncInset : public MathedInset {
 public:
        ///
        explicit
        MathFuncInset(string const & nm,
                      short ot = LM_OT_FUNC, short st = LM_ST_TEXT);
        ///
-       ~MathFuncInset();
-       ///
        MathedInset * Clone();
        ///
        void draw(Painter &, int, int);
@@ -25,12 +28,8 @@ public:
        void Metrics();
        ///
        bool GetLimits() const;
-protected:
-       ///
-       int ln;
-       ///
-       bool lims;
+private:
        ///
-       string fname;
+       bool lims_;
 };
 #endif