| # | Line 115 | Line 115 | class ParameterBase { | |
|---|---|---|
| 115 | class ParameterBase { | |
| 116 | public: | |
| 117 | ParameterBase() : keyword_(), optional_(false), defaultValue_(false), empty_(true) {} | |
| 118 | + | virtual ~ParameterBase() {} |
| 119 | bool isOptional() {return optional_;} | |
| 120 | void setOptional(bool optional) {optional_ = optional;} | |
| 121 | bool hasDefaultValue() {return defaultValue_;} | |
| – | Removed lines |
| + | Added lines |
| < | Changed lines |
| > | Changed lines |