summaryrefslogtreecommitdiff
path: root/examples/QOS/Change_Receiver_FlowSpec/QoS_Util.h
diff options
context:
space:
mode:
Diffstat (limited to 'examples/QOS/Change_Receiver_FlowSpec/QoS_Util.h')
-rw-r--r--examples/QOS/Change_Receiver_FlowSpec/QoS_Util.h10
1 files changed, 5 insertions, 5 deletions
diff --git a/examples/QOS/Change_Receiver_FlowSpec/QoS_Util.h b/examples/QOS/Change_Receiver_FlowSpec/QoS_Util.h
index ae347de68f6..6de6e2d24d3 100644
--- a/examples/QOS/Change_Receiver_FlowSpec/QoS_Util.h
+++ b/examples/QOS/Change_Receiver_FlowSpec/QoS_Util.h
@@ -22,21 +22,21 @@
class QoS_Util
{
- // = TITLE
- // This class provides the utility functions like parse_args ()
+ // = TITLE
+ // This class provides the utility functions like parse_args ()
// required by a QoS enabled application.
public:
// constructor.
- QoS_Util (int argc, ACE_TCHAR *argv[]);
+ QoS_Util (int argc, char *argv[]);
// destructor.
~QoS_Util (void);
// Parse command-line arguments.
int parse_args (void);
-
+
// GET methods.
ACE_INET_Addr *mult_session_addr (void) const;
@@ -52,7 +52,7 @@ private:
// Command line arguments.
int argc_;
- ACE_TCHAR **argv_;
+ char **argv_;
// Multicast session address.
ACE_INET_Addr *mult_session_addr_;