summaryrefslogtreecommitdiff
path: root/tests/Framework_Component_Test.cpp
diff options
context:
space:
mode:
authorSteve Huston <shuston@riverace.com>2002-03-05 00:46:24 +0000
committerSteve Huston <shuston@riverace.com>2002-03-05 00:46:24 +0000
commit0440ae5ffc0fd3ae37b521b6dfa73328577bfe9f (patch)
tree8d0b4f7b12b7951eb603ed38b6d588d6fca08954 /tests/Framework_Component_Test.cpp
parentbe8d4263976d4d046c896d5dcaec25b1be0a0ae7 (diff)
downloadATCD-0440ae5ffc0fd3ae37b521b6dfa73328577bfe9f.tar.gz
ChangeLogTag:Mon Mar 4 19:43:51 2002 Steve Huston <shuston@riverace.com>
Diffstat (limited to 'tests/Framework_Component_Test.cpp')
-rw-r--r--tests/Framework_Component_Test.cpp22
1 files changed, 2 insertions, 20 deletions
diff --git a/tests/Framework_Component_Test.cpp b/tests/Framework_Component_Test.cpp
index 6b1b4e3cadd..e35cb671e82 100644
--- a/tests/Framework_Component_Test.cpp
+++ b/tests/Framework_Component_Test.cpp
@@ -18,31 +18,13 @@
#include "ace/OS.h"
#include "ace/Get_Opt.h"
#include "ace/ARGV.h"
+#include "ace/Object_Manager.h"
#include "ace/SString.h"
#include "tests/test_config.h"
+#include "tests/Framework_Component_Test.h"
ACE_RCSID(tests, Framework_Component_Test, "$Id$")
-/// This is a singleton we will use to test the ACE_Framework_Repository
-class My_Singleton
-{
-public:
- My_Singleton (void)
- {
- ACE_DEBUG ((LM_DEBUG, ACE_LIB_TEXT ("My_Singleton::ctor\n")));
- }
- virtual ~My_Singleton (void)
- {
- ACE_DEBUG ((LM_DEBUG, ACE_LIB_TEXT ("My_Singleton::dtor\n")));
- }
-
- static My_Singleton * instance (void);
-
- static void close_singleton (void);
-
-private:
- static My_Singleton *instance_;
-};
My_Singleton *My_Singleton::instance_ = 0;