1 // This file defines the Options class for CPP-inserver-fancy.
2 // IBM C++ compiler'd template auto-instantiator needs this in a separate file.
4 #ifndef __CPP_INSERVER_FANCY_H
5 #define __CPP_INSERVER_FANCY_H
9 // Define the options for this test.
18 int parse_args (int argc
, ACE_TCHAR
*argv
[]);
19 // Parse the command-line arguments.
22 // Are we running in verbose mode?
24 u_short
port () const;
25 // Port number that we are listening at.
27 int reply_message_len () const;
28 // Size of the reply message.
32 // Are we running in verbose mode?
35 // Port number we listen at.
37 size_t reply_message_len_
;
38 // Size of the reply message.
41 #endif /* __CPP_INSERVER_FANCY_H */