diff options
Diffstat (limited to 'ACE/tests/Collection_Test.h')
-rw-r--r-- | ACE/tests/Collection_Test.h | 36 |
1 files changed, 36 insertions, 0 deletions
diff --git a/ACE/tests/Collection_Test.h b/ACE/tests/Collection_Test.h new file mode 100644 index 00000000000..249c9dd281d --- /dev/null +++ b/ACE/tests/Collection_Test.h @@ -0,0 +1,36 @@ +// -*- 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 */ |