summaryrefslogtreecommitdiff
path: root/cppe/src/IceE/SharedContext.h
diff options
context:
space:
mode:
Diffstat (limited to 'cppe/src/IceE/SharedContext.h')
-rw-r--r--cppe/src/IceE/SharedContext.h47
1 files changed, 0 insertions, 47 deletions
diff --git a/cppe/src/IceE/SharedContext.h b/cppe/src/IceE/SharedContext.h
deleted file mode 100644
index 50c8ae9ceca..00000000000
--- a/cppe/src/IceE/SharedContext.h
+++ /dev/null
@@ -1,47 +0,0 @@
-// **********************************************************************
-//
-// Copyright (c) 2003-2007 ZeroC, Inc. All rights reserved.
-//
-// This copy of Ice-E is licensed to you under the terms described in the
-// ICEE_LICENSE file included in this distribution.
-//
-// **********************************************************************
-
-#ifndef ICEE_SHARED_CONTEXT_H
-#define ICEE_SHARED_CONTEXT_H
-
-#include <IceE/Shared.h>
-#include <IceE/Handle.h>
-#include <string>
-#include <map>
-
-namespace Ice
-{
-typedef ::std::map< ::std::string, ::std::string> Context;
-}
-
-namespace IceInternal
-{
-
-class SharedContext : public IceUtil::Shared
-{
-public:
-
- SharedContext(const Ice::Context& val) :
- _val(val)
- {
- }
-
- inline const Ice::Context& getValue()
- {
- return _val;
- }
-
-private:
-
- Ice::Context _val;
-};
-typedef IceUtil::Handle<SharedContext> SharedContextPtr;
-}
-
-#endif