diff options
author | William R. Otte <wotte@dre.vanderbilt.edu> | 2006-07-24 15:50:30 +0000 |
---|---|---|
committer | William R. Otte <wotte@dre.vanderbilt.edu> | 2006-07-24 15:50:30 +0000 |
commit | c44379cc7d9c7aa113989237ab0f56db12aa5219 (patch) | |
tree | 66a84b20d47f2269d8bdc6e0323f338763424d3a /ACE/tests/Refcounted_Auto_Ptr_Test.h | |
parent | 3aff90f4a822fcf5d902bbfbcc9fa931d6191a8c (diff) | |
download | ATCD-c44379cc7d9c7aa113989237ab0f56db12aa5219.tar.gz |
Repo restructuring
Diffstat (limited to 'ACE/tests/Refcounted_Auto_Ptr_Test.h')
-rw-r--r-- | ACE/tests/Refcounted_Auto_Ptr_Test.h | 39 |
1 files changed, 39 insertions, 0 deletions
diff --git a/ACE/tests/Refcounted_Auto_Ptr_Test.h b/ACE/tests/Refcounted_Auto_Ptr_Test.h new file mode 100644 index 00000000000..745b7239c3d --- /dev/null +++ b/ACE/tests/Refcounted_Auto_Ptr_Test.h @@ -0,0 +1,39 @@ +// $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 + +#include "ace/Atomic_Op.h" +#include "ace/Synch.h" + +struct Printer +{ + Printer (const char *message); + ~Printer (void) ; + + void print (void); + + const char *message_; + unsigned int which_; + static ACE_Atomic_Op<ACE_SYNCH_MUTEX, unsigned int> current_instance_; + static ACE_Atomic_Op<ACE_SYNCH_MUTEX, long> instance_count_; +}; + +#endif /* ACE_TESTS_REFCOUNTED_AUTO_PTR_TEST_H */ |