Changeset 6022 for branches/newapi

Show
Ignore:
Timestamp:
01/11/08 07:53:30 (11 months ago)
Author:
erijo
Message:

Use typedef for boost::shared_ptr<Licq::Event>.

Files:
1 modified

Legend:

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

    r5975 r6022  
    6262   * @param event The event to add to the queue. 
    6363   */ 
    64   virtual void push(boost::shared_ptr<Event> event) = 0; 
     64  virtual void push(Event::Ptr event) = 0; 
    6565 
    6666  /** 
     
    7070   * @throws Licq::RuntimeException If the queue is empty. 
    7171   */ 
    72   virtual boost::shared_ptr<Event> pop() = 0; 
     72  virtual Event::Ptr pop() = 0; 
    7373 
    7474protected: