3 //=============================================================================
7 * Define class needed for generating templates. IBM C++ requires this
8 * to be in its own file for auto template instantiation.
10 * @author Kobi Cohen-Arazi <kobi-co@barak-online.net>
12 //=============================================================================
14 #ifndef ACE_TESTS_TASK_EX_TEST_H
15 #define ACE_TESTS_TASK_EX_TEST_H
17 #include "ace/Basic_Types.h"
19 class User_Defined_Msg
22 /// c'tor sets the msg id
23 User_Defined_Msg (ACE_INT32 id
) : msg_id_ (id
)
25 /// accessors to msg_id_
26 ACE_INT32
msg_id () const {return msg_id_
;}
28 /// keep the msg id here
32 #endif /* ACE_TESTS_TASK_EX_TEST_H */