From c44379cc7d9c7aa113989237ab0f56db12aa5219 Mon Sep 17 00:00:00 2001 From: "William R. Otte" Date: Mon, 24 Jul 2006 15:50:30 +0000 Subject: Repo restructuring --- ACE/tests/Refcounted_Auto_Ptr_Test.h | 39 ++++++++++++++++++++++++++++++++++++ 1 file changed, 39 insertions(+) create mode 100644 ACE/tests/Refcounted_Auto_Ptr_Test.h (limited to 'ACE/tests/Refcounted_Auto_Ptr_Test.h') 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 +// +// ============================================================================ + +#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 current_instance_; + static ACE_Atomic_Op instance_count_; +}; + +#endif /* ACE_TESTS_REFCOUNTED_AUTO_PTR_TEST_H */ -- cgit v1.2.1