3 //=============================================================================
7 * This class implements the source for a three tier system
8 * Adapted from TAO/examples/Simple/time
10 * @author Dale Wilson <wilsond@ociweb.com>
12 //=============================================================================
18 #include "ThreeTierC.h"
23 * @brief Source interface subclass.
25 * a source of data for the three tier test
30 Source_i (ThreeTier_ptr target
);
34 bool parse_args(int argc
, ACE_TCHAR
*argv
[]);
36 /// Execute the methods
40 ThreeTier_var target_
;
42 // Number of messages to send (make this configurable)
43 unsigned long counter_
;
48 #endif /* SOURCE_I_H */