diff options
author | Matthew Newhook <matthew@zeroc.com> | 2006-11-23 05:01:29 +0000 |
---|---|---|
committer | Matthew Newhook <matthew@zeroc.com> | 2006-11-23 05:01:29 +0000 |
commit | d5d7d2c8176964b89ba99c8d667642cc8671fc0c (patch) | |
tree | 678894c6e9ce0e2c0f7dea6d1690bb136870eb35 /cpp/src/IceStorm/Subscriber.h | |
parent | Bug 1561. (diff) | |
download | ice-d5d7d2c8176964b89ba99c8d667642cc8671fc0c.tar.bz2 ice-d5d7d2c8176964b89ba99c8d667642cc8671fc0c.tar.xz ice-d5d7d2c8176964b89ba99c8d667642cc8671fc0c.zip |
http://bugzilla.zeroc.com/bugzilla/show_bug.cgi?id=1568
Diffstat (limited to 'cpp/src/IceStorm/Subscriber.h')
-rw-r--r-- | cpp/src/IceStorm/Subscriber.h | 5 |
1 files changed, 2 insertions, 3 deletions
diff --git a/cpp/src/IceStorm/Subscriber.h b/cpp/src/IceStorm/Subscriber.h index 580bef03cbb..1540d419955 100644 --- a/cpp/src/IceStorm/Subscriber.h +++ b/cpp/src/IceStorm/Subscriber.h @@ -11,7 +11,6 @@ #define SUBSCRIBERS_H #include <IceStorm/IceStormInternal.h> // F -#include <IceStorm/Event.h> namespace IceStorm { @@ -41,7 +40,7 @@ public: QueueStateFlush, QueueStateNoFlush }; - virtual QueueState queue(bool, const std::vector<EventPtr>&); + virtual QueueState queue(bool, const std::vector<EventDataPtr>&); // // Return true if flush() must be called again, false otherwise. // @@ -77,7 +76,7 @@ protected: SubscriberStateError }; SubscriberState _state; // The subscriber state. - EventSeq _events; // The queue of events to send. + EventDataSeq _events; // The queue of events to send. // // Not protected by _mutex. These members are protected by the |