Changeset 5948 for branches/newapi

Show
Ignore:
Timestamp:
12/09/07 22:33:16 (12 months ago)
Author:
erijo
Message:

Made EventLoop::Handler dtor protected

Files:
1 modified

Legend:

Unmodified
Added
Removed
  • branches/newapi/licq/licq/event/eventloop.h

    r5717 r5948  
    3838  { 
    3939  public: 
    40     virtual ~Handler() {} 
    4140    virtual void onDescriptor(int fd, NotifierType type) = 0; 
    4241    virtual void onTimer(int timer) = 0; 
     42 
     43  protected: 
     44    virtual ~Handler() { /* Empty */ } 
    4345  }; 
    4446