mirror of
https://git.lyx.org/repos/lyx.git
synced 2024-11-11 05:33:33 +00:00
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:
parent
3e3a56bb6a
commit
706b39f788
@ -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:
|
||||
///
|
||||
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
|
||||
|
Loading…
Reference in New Issue
Block a user