| 303 | |
| 304 | } |
| 305 | void RobotControlExample::createButton(const char* name, int buttonId, bool isTrigger ) |
| 306 | { |
| 307 | ButtonParams button(name,buttonId, isTrigger); |
| 308 | button.m_callback = MyCallback2; |
| 309 | button.m_userPointer = this; |
| 310 | m_guiHelper->getParameterInterface()->registerButtonParameter(button); |
| 311 | } |
| 312 | |
| 313 | RobotControlExample::RobotControlExample(GUIHelperInterface* helper, int option) |
| 314 | :SharedMemoryCommon(helper), |
nothing calls this directly
no test coverage detected