summaryrefslogtreecommitdiff
path: root/examples/QOS/QoS_Util.h
diff options
context:
space:
mode:
Diffstat (limited to 'examples/QOS/QoS_Util.h')
-rw-r--r--examples/QOS/QoS_Util.h74
1 files changed, 0 insertions, 74 deletions
diff --git a/examples/QOS/QoS_Util.h b/examples/QOS/QoS_Util.h
deleted file mode 100644
index 66ac8b1392e..00000000000
--- a/examples/QOS/QoS_Util.h
+++ /dev/null
@@ -1,74 +0,0 @@
-/* -*- C++ -*- */
-// $Id$
-
-// =====================================================================
-//
-// = LIBRARY
-// ACE_wrappers/examples/QOS
-//
-// = FILENAME
-// QoS_Util.h
-//
-// = AUTHOR
-// Vishal Kachroo <vishal@cs.wustl.edu>
-//
-// =====================================================================
-
-#ifndef QOS_UTIL_H
-#define QOS_UTIL_H
-
-#include "ace/INET_Addr.h"
-#include "ace/QoS_Session.h"
-
-class QoS_Util
-{
- // = TITLE
- // This class provides the utility functions like parse_args ()
- // required by a QoS enabled application.
-
-public:
-
- // constructor.
- 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;
-
- ACE_INET_Addr *dest_addr (void) const;
-
- u_short source_port (void) const;
-
- ACE_Protocol_ID protocol (void) const;
-
- int multicast_flag (void) const;
-
-private:
-
- // Command line arguments.
- int argc_;
- char **argv_;
-
- // Multicast session address.
- ACE_INET_Addr *mult_session_addr_;
-
- // Unicast destination address of the receiver.
- ACE_INET_Addr *dest_addr_;
-
- // Source port for the sender.
- u_short source_port_;
-
- // Protocol.
- ACE_Protocol_ID protocol_;
-
- // Multicast Flag.
- int multicast_flag_;
-};
-
-#endif /* QOS_UTIL_H */
-