// ********************************************************************** // // Copyright (c) 2002 // Mutable Realms, Inc. // Huntsville, AL, USA // // All Rights Reserved // // ********************************************************************** #ifndef ICE_CONNECTOR_H #define ICE_CONNECTOR_H #include #include #include namespace IceInternal { class ICE_PROTOCOL_API Connector : public ::IceUtil::Shared { public: virtual TransceiverPtr connect(int) = 0; virtual std::string toString() const = 0; }; } #endif