Mark a function const
This commit is contained in:
parent
3df2734b52
commit
3aa27e0491
1 changed files with 3 additions and 1 deletions
|
@ -130,7 +130,9 @@ public:
|
|||
Bits GetValue() {
|
||||
return current_value;
|
||||
}
|
||||
const char * GetName() const { return entry; }
|
||||
const char * GetName(void) const {
|
||||
return entry;
|
||||
}
|
||||
virtual bool IsTrigger() = 0;
|
||||
CBindList bindlist;
|
||||
protected:
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue