]> git.lyx.org Git - lyx.git/blobdiff - src/mathed/math_macrotemplate.h
split inset -> inset + updatableinset
[lyx.git] / src / mathed / math_macrotemplate.h
index 106372f194f490ce5338a185a89eaab1de9d72a4..3c3fbe3726b21bad5971f64484182d1cde1fe9d1 100644 (file)
@@ -5,14 +5,13 @@
 #include "math_nestinset.h"
 #include "LString.h"
 
-#ifdef __GNUG__
-#pragma interface
-#endif
 
 class MathMacro;
 
 /** This class contains the macro definition
-    \author Alejandro Aguilar Sierra
+ *  \author Alejandro Aguilar Sierra
+ *
+ * Full author contact details are available in file CREDITS
  */
 //class MathMacroTemplate : public MathInset, boost::noncopyable
 
@@ -34,13 +33,15 @@ public:
        ///
        void numargs(int);
        ///
-       string const & name() const;
+       string name() const;
        ///
        void draw(MathPainterInfo &, int x, int y) const;
        ///
        void metrics(MathMetricsInfo & st) const;
        /// identifies macro templates
        MathMacroTemplate * asMacroTemplate() { return this; }
+       /// identifies macro templates
+       MathMacroTemplate const * asMacroTemplate() const { return this; }
 private:
        ///
        int numargs_;