// ********************************************************************** // // Copyright (c) 2003-2004 ZeroC, Inc. All rights reserved. // // This copy of Ice is licensed to you under the terms described in the // ICE_LICENSE file included in this distribution. // // ********************************************************************** #ifndef LINK_PROXY_H #define LINK_PROXY_H #include #include namespace IceStorm { // // LinkProxy subclasses QueuedProxy for topic links. // class LinkProxy : public QueuedProxy { public: LinkProxy(const TopicLinkPrx&); virtual Ice::ObjectPrx proxy() const; protected: virtual void deliver(const EventPtr&); private: TopicLinkPrx _obj; }; } #endif