summaryrefslogtreecommitdiff
path: root/cpp/include/Ice/GCShared.h
diff options
context:
space:
mode:
Diffstat (limited to 'cpp/include/Ice/GCShared.h')
-rw-r--r--cpp/include/Ice/GCShared.h49
1 files changed, 0 insertions, 49 deletions
diff --git a/cpp/include/Ice/GCShared.h b/cpp/include/Ice/GCShared.h
deleted file mode 100644
index d5e599e4715..00000000000
--- a/cpp/include/Ice/GCShared.h
+++ /dev/null
@@ -1,49 +0,0 @@
-// **********************************************************************
-//
-// Copyright (c) 2003-2014 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 ICE_GC_SHARED_H
-#define ICE_GC_SHARED_H
-
-#include <IceUtil/Shared.h>
-#include <Ice/Config.h>
-#include <Ice/GCCountMap.h>
-
-namespace IceInternal
-{
-
-class GC;
-
-class ICE_API GCShared : public virtual IceUtil::Shared
-{
-public:
-
- virtual ~GCShared() {}
-
- GCShared& operator=(const GCShared&)
- {
- return *this;
- }
-
- virtual void __incRef();
- virtual void __decRef();
- virtual int __getRef() const;
- virtual void __setNoDelete(bool);
-
- virtual void __gcReachable(GCCountMap&) const = 0;
- virtual void __gcClear() = 0;
-
- int __getRefUnsafe() const
- {
- return _ref;
- }
-};
-
-}
-
-#endif