| 327 | #ifndef SWIG |
| 328 | |
| 329 | struct EventCommand |
| 330 | { |
| 331 | EventCommand(EventEnum e, Command * c); |
| 332 | EventEnum m_Event; |
| 333 | Command * m_Command; |
| 334 | |
| 335 | // set to max if currently not registered |
| 336 | unsigned long m_ITKTag; |
| 337 | |
| 338 | inline bool |
| 339 | operator==(const EventCommand & o) const |
| 340 | { |
| 341 | return m_Command == o.m_Command; |
| 342 | } |
| 343 | inline bool |
| 344 | operator<(const EventCommand & o) const |
| 345 | { |
| 346 | return m_Command < o.m_Command; |
| 347 | } |
| 348 | }; |
| 349 | |
| 350 | // method called before filter update to set parameters and |
| 351 | // connect commands. |
nothing calls this directly
no outgoing calls
no test coverage detected