3 //=============================================================================
7 * Define class needed for generating templates.
9 * @author Kobi Cohen-Arazi <kobi-co@barak-online.net>
11 //=============================================================================
13 #ifndef ACE_TESTS_TASK_EX_TEST_H
14 #define ACE_TESTS_TASK_EX_TEST_H
16 #include "ace/Basic_Types.h"
18 class User_Defined_Msg
21 /// c'tor sets the msg id
22 User_Defined_Msg (ACE_INT32 id
) : msg_id_ (id
)
24 /// accessors to msg_id_
25 ACE_INT32
msg_id () const {return msg_id_
;}
27 /// keep the msg id here
31 #endif /* ACE_TESTS_TASK_EX_TEST_H */