Changeset 2850
- Timestamp:
- Apr 16, 2009, 2:58:55 PM (16 years ago)
- Location:
- source/ariba/utility/system
- Files:
-
- 2 edited
Legend:
- Unmodified
- Added
- Removed
-
source/ariba/utility/system/SystemEvent.h
r2848 r2850 59 59 const void* data; //< data attached to the event 60 60 61 public: 61 public: 62 // TODO: these should be private, but the gcc 3.4 in scratchbox for cross-compiling 63 // for Maemo (Nokia N810) gets confused when the friend class SystemQueue has a 64 // private class that accesses these variables. Therefore they are public for now. 62 65 ptime scheduledTime; //< time the event was originally given to the queue 63 66 uint32_t delayTime; //< time the event is scheduled at, or 0 if it is to be fired immediately -
source/ariba/utility/system/SystemQueue.cpp
r2849 r2850 220 220 void SystemQueue::QueueThreadDirect::onNextQueueItem( const SystemEvent& event ){ 221 221 // directly deliver the item to the 222 event. listener->handleSystemEvent( event );222 event.getListener()->handleSystemEvent( event ); 223 223 } 224 224
Note:
See TracChangeset
for help on using the changeset viewer.