2 #ifndef COLLOCATED_TEST_CLIENT_TASK_H
3 #define COLLOCATED_TEST_CLIENT_TASK_H
4 #include /**/ "ace/pre.h"
7 #include "TreeControllerC.h"
10 #if !defined (ACE_LACKS_PRAGMA_ONCE)
12 #endif /* ACE_LACKS_PRAGMA_ONCE */
16 /// Implement a Task to run the client as a thread
17 class Client_Task
: public ACE_Task_Base
21 Client_Task (const ACE_TCHAR
*input
,
23 ACE_Thread_Manager
*thr_mgr
);
25 /// Thread entry point
28 void dump_node (BaseNode
*bn
, int indent
);
30 void dump_tree (TreeController
*tc
);
32 int is_equal_tree (TreeController
* tree1
, TreeController
* tree2
);
34 int is_equal_node (BaseNode
* node1
, BaseNode
* node2
);
37 const ACE_TCHAR
*input_
;
42 #include /**/ "ace/post.h"
43 #endif /* COLLOCATED_TEST_CLIENT_TASK_H */