Changeset 6022 for branches/newapi
- Timestamp:
- 01/11/08 07:53:30 (11 months ago)
- Files:
-
- 1 modified
-
branches/newapi/licq/licq/event/eventqueue.h (modified) (2 diffs)
Legend:
- Unmodified
- Added
- Removed
-
branches/newapi/licq/licq/event/eventqueue.h
r5975 r6022 62 62 * @param event The event to add to the queue. 63 63 */ 64 virtual void push( boost::shared_ptr<Event>event) = 0;64 virtual void push(Event::Ptr event) = 0; 65 65 66 66 /** … … 70 70 * @throws Licq::RuntimeException If the queue is empty. 71 71 */ 72 virtual boost::shared_ptr<Event>pop() = 0;72 virtual Event::Ptr pop() = 0; 73 73 74 74 protected:
