diff options
Diffstat (limited to 'cpp/src/Ice/TraceLevels.h')
-rw-r--r-- | cpp/src/Ice/TraceLevels.h | 38 |
1 files changed, 38 insertions, 0 deletions
diff --git a/cpp/src/Ice/TraceLevels.h b/cpp/src/Ice/TraceLevels.h new file mode 100644 index 00000000000..f30e5442e77 --- /dev/null +++ b/cpp/src/Ice/TraceLevels.h @@ -0,0 +1,38 @@ +// ********************************************************************** +// +// Copyright (c) 2002 +// MutableRealms, Inc. +// Huntsville, AL, USA +// +// All Rights Reserved +// +// ********************************************************************** + +#ifndef ICE_TRACE_LEVELS_H +#define ICE_TRACE_LEVELS_H + +#include <Ice/TraceLevelsF.h> +#include <Ice/PropertiesF.h> +#include <Ice/Shared.h> + +namespace IceInternal +{ + +class TraceLevels : public Shared +{ +public: + + TraceLevels(const ::Ice::PropertiesPtr&); + virtual ~TraceLevels(); + + const int network; + const char* networkCat; + const int protocol; + const char* protocolCat; + const int retry; + const char* retryCat; +}; + +} + +#endif |