summaryrefslogtreecommitdiff
path: root/cpp/src/Ice/Shared.cpp
diff options
context:
space:
mode:
Diffstat (limited to 'cpp/src/Ice/Shared.cpp')
-rw-r--r--cpp/src/Ice/Shared.cpp45
1 files changed, 0 insertions, 45 deletions
diff --git a/cpp/src/Ice/Shared.cpp b/cpp/src/Ice/Shared.cpp
deleted file mode 100644
index 12f3bb88501..00000000000
--- a/cpp/src/Ice/Shared.cpp
+++ /dev/null
@@ -1,45 +0,0 @@
-// **********************************************************************
-//
-// Copyright (c) 2001
-// MutableRealms, Inc.
-// Huntsville, AL, USA
-//
-// All Rights Reserved
-//
-// **********************************************************************
-
-#include <Ice/Shared.h>
-
-using namespace std;
-using namespace Ice;
-using namespace IceInternal;
-
-//static int simpleDebugCounter = 0;
-//static int debugCounter = 0;
-//static JTCMutex debugCounterMutex;
-
-IceInternal::SimpleShared::SimpleShared() :
- _ref(0),
- _noDelete(false)
-{
-// cout << "new SimpleShared: " << ++simpleDebugCounter << endl;
-}
-
-IceInternal::SimpleShared::~SimpleShared()
-{
-// cout << "delete SimpleShared: " << --simpleDebugCounter << endl;
-}
-
-IceInternal::Shared::Shared() :
- _ref(0),
- _noDelete(false)
-{
-// JTCSyncT<JTCMutex> sync(debugCounterMutex);
-// cout << "new Shared: " << ++debugCounter << endl;
-}
-
-IceInternal::Shared::~Shared()
-{
-// JTCSyncT<JTCMutex> sync(debugCounterMutex);
-// cout << "delete Shared: " << --debugCounter << endl;
-}