| 85 |
// functions overriding virtual functions from bases classes |
// functions overriding virtual functions from bases classes |
| 86 |
public: |
public: |
| 87 |
void print(const print_context & c, unsigned level = 0) const; |
void print(const print_context & c, unsigned level = 0) const; |
| 88 |
|
unsigned precedence(void) const {return 30;} |
| 89 |
bool info(unsigned inf) const; |
bool info(unsigned inf) const; |
| 90 |
bool has(const ex &other) const; |
bool has(const ex &other) const; |
| 91 |
ex eval(int level = 0) const; |
ex eval(int level = 0) const; |
| 161 |
// member variables |
// member variables |
| 162 |
|
|
| 163 |
protected: |
protected: |
|
static unsigned precedence; |
|
| 164 |
cln::cl_number value; |
cln::cl_number value; |
| 165 |
}; |
}; |
| 166 |
|
|