]> git.lyx.org Git - lyx.git/blobdiff - src/mathed/formula.h
enable direct input of #1...#9; some whitespace changes
[lyx.git] / src / mathed / formula.h
index f0b57150d9f44d208bc90099532f0e9cf4b6fe2d..dd2ec650ca9681c51f167c00d8175b281d59fb5d 100644 (file)
@@ -71,24 +71,25 @@ public:
        ///
        std::vector<string> const getLabelList() const;
        ///
-       void handleExtern(string const & arg);
-       ///
-       bool display() const;
-       ///
-       bool ams() const;
-       ///
        MathInsetTypes getType() const;
        ///
        MathAtom const & par() const { return par_; }
        ///
        MathAtom & par() { return par_; }
-public:
+
+private:
+       /// Is this a displayed environment?
+       bool display() const;
+       /// available in AMS only?
+       bool ams() const;
+       /// access to hull
+       MathHullInset * hull();
+       /// access to hull
+       MathHullInset const * hull() const;
        ///
-       MathAtom par_;
+       void handleExtern(string const & arg);
 
-       /// Access
-       MathHullInset * mat();
-       /// Access
-       MathHullInset const * mat() const;
+       ///
+       MathAtom par_;
 };
 #endif