| 192 | double mTextPopupTime{ -1 }; |
| 193 | |
| 194 | struct Routing |
| 195 | { |
| 196 | Routing(IDrawableModule* module, ofColor connectionColor) |
| 197 | { |
| 198 | mModule = module; |
| 199 | mConnectionColor = connectionColor; |
| 200 | } |
| 201 | IDrawableModule* mModule; |
| 202 | ofColor mConnectionColor; |
| 203 | }; |
| 204 | |
| 205 | std::vector<Routing> mRoutingInputModules; |
| 206 | std::vector<Routing> mRoutingOutputModules; |
no outgoing calls
no test coverage detected