summaryrefslogtreecommitdiff
path: root/tests/Collection_Test.h
diff options
context:
space:
mode:
Diffstat (limited to 'tests/Collection_Test.h')
-rw-r--r--tests/Collection_Test.h36
1 files changed, 0 insertions, 36 deletions
diff --git a/tests/Collection_Test.h b/tests/Collection_Test.h
deleted file mode 100644
index 249c9dd281d..00000000000
--- a/tests/Collection_Test.h
+++ /dev/null
@@ -1,36 +0,0 @@
-// -*- C++ -*-
-
-// $Id$
-
-// ============================================================================
-//
-// = LIBRARY
-// tests
-//
-// = FILENAME
-// Collection_Test.h
-//
-// = DESCRIPTION
-// Define class needed for generating templates. IBM C++ requires this to
-// be in its own file for auto template instantiation.
-//
-// = AUTHOR
-// Irfan Pyarali <irfan@cs.wustl.edu>
-//
-// ============================================================================
-
-#ifndef ACE_TESTS_COLLECTION_TEST_H
-#define ACE_TESTS_COLLECTION_TEST_H
-
-typedef void (*deletion_func)(void* p);
-
-struct UglyThing
-{
- void *alloc_;
- deletion_func dfunc_;
-
- UglyThing (void* alloc = 0, deletion_func dfunc = 0);
- bool operator== (const UglyThing& r) const;
-};
-
-#endif /* ACE_TESTS_COLLECTION_TEST_H */