| 30 | { |
| 31 | public: |
| 32 | IPLEvent(const char* name) |
| 33 | { |
| 34 | _eventType = IPL_EVENT_DEFAULT; |
| 35 | _eventName = std::string(name); |
| 36 | } |
| 37 | IPLEventType type() { return _eventType; } |
| 38 | std::string name() { return _eventName; } |
| 39 | private: |
nothing calls this directly
no outgoing calls
no test coverage detected