some more public->private stuff

git-svn-id: svn://svn.lyx.org/lyx/lyx-devel/trunk@3022 a592a061-630c-0410-9148-cb99ea01b6c8
This commit is contained in:
André Pönitz 2001-11-13 15:21:38 +00:00
parent 3e3a56bb6a
commit 706b39f788

View File

@ -71,24 +71,25 @@ public:
/// ///
std::vector<string> const getLabelList() const; std::vector<string> const getLabelList() const;
/// ///
void handleExtern(string const & arg);
///
bool display() const;
///
bool ams() const;
///
MathInsetTypes getType() const; MathInsetTypes getType() const;
/// ///
MathAtom const & par() const { return par_; } MathAtom const & par() const { return par_; }
/// ///
MathAtom & par() { 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 /// Access
MathHullInset * mat(); MathHullInset * mat();
/// Access /// Access
MathHullInset const * mat() const; MathHullInset const * mat() const;
///
void handleExtern(string const & arg);
///
MathAtom par_;
}; };
#endif #endif