summaryrefslogtreecommitdiff
path: root/tests/Message_Queue_Test_Ex.h
diff options
context:
space:
mode:
authornobody <nobody@ae88bc3d-4319-0410-8dbf-d08b4c9d3795>2003-04-10 19:59:37 +0000
committernobody <nobody@ae88bc3d-4319-0410-8dbf-d08b4c9d3795>2003-04-10 19:59:37 +0000
commit3df4acfa816441fc28a95dee6d0191a927145d95 (patch)
treeb5ae7ca44662cfd8e5c95f1826e4406021a606f5 /tests/Message_Queue_Test_Ex.h
parent60a5612b83d856fc0adc52b9f39fac9960ec9818 (diff)
downloadATCD-pre-subset.tar.gz
This commit was manufactured by cvs2svn to create tag 'pre-subset'.pre-subset
Diffstat (limited to 'tests/Message_Queue_Test_Ex.h')
-rw-r--r--tests/Message_Queue_Test_Ex.h42
1 files changed, 0 insertions, 42 deletions
diff --git a/tests/Message_Queue_Test_Ex.h b/tests/Message_Queue_Test_Ex.h
deleted file mode 100644
index 9f3fc7e4d39..00000000000
--- a/tests/Message_Queue_Test_Ex.h
+++ /dev/null
@@ -1,42 +0,0 @@
-// $Id$
-
-// ============================================================================
-//
-// = LIBRARY
-// tests
-//
-// = FILENAME
-// Message_Queue_Test_Ex.h
-//
-// = DESCRIPTION
-// Define class needed for generating templates. IBM C++ requires this to
-// be in its own file for auto template instantiation.
-//
-// = AUTHORS
-// Michael Vitlo <mvitalo@sprynet.com>, copied the code from:
-// Irfan Pyarali <irfan@cs.wustl.edu> and David L. Levine <levine@cs.wustl.edu>
-//
-// ============================================================================
-
-#ifndef ACE_TESTS_MESSAGE_QUEUE_TEST_EX_H
-#define ACE_TESTS_MESSAGE_QUEUE_TEST_EX_H
-
-#include "ace/OS.h"
-
-// User-defined class used for queue data.
-class User_Class
-{
-public:
- User_Class (const char inputMsg[])
- : message_ (0)
- {
- ACE_NEW (this->message_, char[ACE_OS::strlen (inputMsg) + 1]);
- ACE_OS::strcpy (this->message_, inputMsg);
- }
-
- ~User_Class (void) { delete [] this->message_; }
-private:
- char *message_;
-};
-
-#endif /* ACE_TESTS_MESSAGE_QUEUE_TEST_EX_H */