| 49 | typedef std::vector<CustomActionPtr> CustomActionPtrVec; |
| 50 | |
| 51 | class CustomEvent { |
| 52 | public: |
| 53 | float prob; |
| 54 | int times; |
| 55 | std::string activity; |
| 56 | |
| 57 | CustomActionPtrVec actions; |
| 58 | }; |
| 59 | |
| 60 | typedef std::shared_ptr<CustomEvent> CustomEventPtr; |
| 61 | typedef std::vector<CustomEventPtr> CustomEventPtrVec; |
nothing calls this directly
no outgoing calls
no test coverage detected