diff options
Diffstat (limited to 'tests/Collection_Test.h')
-rw-r--r-- | tests/Collection_Test.h | 34 |
1 files changed, 0 insertions, 34 deletions
diff --git a/tests/Collection_Test.h b/tests/Collection_Test.h deleted file mode 100644 index 1ac52d0a465..00000000000 --- a/tests/Collection_Test.h +++ /dev/null @@ -1,34 +0,0 @@ -// $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); - int operator== (const UglyThing& r) const; -}; - -#endif /* ACE_TESTS_COLLECTION_TEST_H */ |