// ********************************************************************** // // Copyright (c) 2002 // Mutable Realms, Inc. // Huntsville, AL, USA // // All Rights Reserved // // ********************************************************************** #ifndef ICE_DEFAULTS_AND_OVERRIDES_H #define ICE_DEFAULTS_AND_OVERRIDES_H #include #include #include namespace IceInternal { class DefaultsAndOverrides : public ::IceUtil::Shared { public: DefaultsAndOverrides(const ::Ice::PropertiesPtr&); std::string defaultHost; std::string defaultProtocol; std::string defaultRouter; std::string defaultLocator; bool overrideTimeout; Ice::Int overrideTimeoutValue; bool overrideComppress; bool overrideComppressValue; }; } #endif