Changeset 5948 for branches/newapi
- Timestamp:
- 12/09/07 22:33:16 (12 months ago)
- Files:
-
- 1 modified
-
branches/newapi/licq/licq/event/eventloop.h (modified) (1 diff)
Legend:
- Unmodified
- Added
- Removed
-
branches/newapi/licq/licq/event/eventloop.h
r5717 r5948 38 38 { 39 39 public: 40 virtual ~Handler() {}41 40 virtual void onDescriptor(int fd, NotifierType type) = 0; 42 41 virtual void onTimer(int timer) = 0; 42 43 protected: 44 virtual ~Handler() { /* Empty */ } 43 45 }; 44 46
