Changeset 5912 for branches/newapi
- Timestamp:
- 12/02/07 20:41:59 (12 months ago)
- Location:
- branches/newapi/licq/licq
- Files:
-
- 2 modified
-
interface/logsink.h (modified) (2 diffs)
-
log.h (modified) (1 diff)
Legend:
- Unmodified
- Added
- Removed
-
branches/newapi/licq/licq/interface/logsink.h
r5911 r5912 52 52 }; 53 53 54 virtual ~LogSink() {}55 56 54 /** 57 55 * @return True if the sink is interested in log messages at @a … … 79 77 */ 80 78 virtual void log(const Packet& packet); 79 80 protected: 81 virtual ~LogSink() { /* Empty */ } 81 82 }; 82 83 -
branches/newapi/licq/licq/log.h
r5911 r5912 139 139 protected: 140 140 /// Destroy the log. 141 virtual ~Log() { }141 virtual ~Log() { /* Empty */ } 142 142 }; 143 143
