summaryrefslogtreecommitdiff
path: root/tests/Refcounted_Auto_Ptr_Test.h
diff options
context:
space:
mode:
Diffstat (limited to 'tests/Refcounted_Auto_Ptr_Test.h')
-rw-r--r--tests/Refcounted_Auto_Ptr_Test.h34
1 files changed, 0 insertions, 34 deletions
diff --git a/tests/Refcounted_Auto_Ptr_Test.h b/tests/Refcounted_Auto_Ptr_Test.h
deleted file mode 100644
index f67c93eb45a..00000000000
--- a/tests/Refcounted_Auto_Ptr_Test.h
+++ /dev/null
@@ -1,34 +0,0 @@
-// $Id$
-
-// ============================================================================
-//
-// = LIBRARY
-// tests
-//
-// = FILENAME
-// Refcounted_Auto_Ptr_Test.h
-//
-// = DESCRIPTION
-// Define class needed for generating templates. IBM C++ requires this to
-// be in its own file for auto template instantiation.
-//
-// = AUTHOR
-// Steve Huston <shuston@riverace.com>
-//
-// ============================================================================
-
-#ifndef ACE_TESTS_REFCOUNTED_AUTO_PTR_TEST_H
-#define ACE_TESTS_REFCOUNTED_AUTO_PTR_TEST_H
-
-struct Printer
-{
- Printer (const char *message);
- ~Printer (void) ;
-
- void print (void);
-
- const char *message_;
- static size_t instance_count_;
-};
-
-#endif /* ACE_TESTS_REFCOUNTED_AUTO_PTR_TEST_H */