From 706b39f7889387f456fdf209ccd80f9de344726e Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Andr=C3=A9=20P=C3=B6nitz?= Date: Tue, 13 Nov 2001 15:21:38 +0000 Subject: [PATCH] some more public->private stuff git-svn-id: svn://svn.lyx.org/lyx/lyx-devel/trunk@3022 a592a061-630c-0410-9148-cb99ea01b6c8 --- src/mathed/formula.h | 19 ++++++++++--------- 1 file changed, 10 insertions(+), 9 deletions(-) diff --git a/src/mathed/formula.h b/src/mathed/formula.h index f0b57150d9..471f5f3130 100644 --- a/src/mathed/formula.h +++ b/src/mathed/formula.h @@ -71,24 +71,25 @@ public: /// std::vector 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: - /// - MathAtom par_; +private: + /// Is this a displayed environment? + bool display() const; + /// available in AMS only? + bool ams() const; /// Access MathHullInset * mat(); /// Access MathHullInset const * mat() const; + /// + void handleExtern(string const & arg); + + /// + MathAtom par_; }; #endif