Changeset 1349 for code/trunk/src/core/Executor.h
- Timestamp:
- May 21, 2008, 9:07:08 PM (17 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
code/trunk/src/core/Executor.h
r1062 r1349 204 204 { return this->accessLevel_; } 205 205 206 inline Executor& setKeybindMode(KeybindMode::Enum mode) 207 { this->keybindMode_ = mode; return *this; } 208 inline KeybindMode::Enum getKeybindMode() const 209 { return this->keybindMode_; } 210 211 inline Executor& setAxisParamIndex(int index) 212 { this->axisParamIndex_ = index; return *this; } 213 inline int getAxisParamIndex() const 214 { return this->axisParamIndex_; } 215 216 inline Executor& setIsAxisRelative(bool val) 217 { this->bAxisRelative_ = val; return *this; } 218 inline int getIsAxisRelative() const 219 { return this->bAxisRelative_; } 220 206 221 Executor& setDefaultValues(const MultiTypeMath& param1); 207 222 Executor& setDefaultValues(const MultiTypeMath& param1, const MultiTypeMath& param2); … … 233 248 MultiTypeMath defaultValue_[MAX_FUNCTOR_ARGUMENTS]; 234 249 bool bAddedDefaultValue_[MAX_FUNCTOR_ARGUMENTS]; 250 251 KeybindMode::Enum keybindMode_; 252 int axisParamIndex_; 253 bool bAxisRelative_; 235 254 236 255 private:
Note: See TracChangeset
for help on using the changeset viewer.