Id: | To index | |
Original: | Legend | |
Status: | ||
Mutant: | Show |
Testcases to display
Filter by kind
Filter by status
1: # ifndef system_hpp |
2: # define system_hpp |
3: |
4: # include "event.h" |
5: # include "util.h" |
6: |
7: class System { |
8: public : |
9: virtual void update ( ) = 0 ; |
10: virtual void handleEvent ( const EvAny & ev ) { } |
11: } ; |
12: |
13: # endif |