Go to the documentation of this file.00001
00002
00003
00004
00005
00006
00007
00008
00009
00010
00011
00012
00013
00014 #ifndef ACE_QOS_MANAGER_H
00015 #define ACE_QOS_MANAGER_H
00016 #include "ace/pre.h"
00017
00018 #include "ace/Addr.h"
00019
00020 #if !defined (ACE_LACKS_PRAGMA_ONCE)
00021 #pragma once
00022 #endif
00023
00024 #include "ace/IPC_SAP.h"
00025 #include "ace/Containers_T.h"
00026 #include "ACE_QoS_Export.h"
00027 #include "QoS_Session.h"
00028
00029
00030 ACE_BEGIN_VERSIONED_NAMESPACE_DECL
00031
00032
00033
00034
00035
00036
00037
00038
00039
00040
00041
00042
00043 class ACE_QoS_Export ACE_QoS_Manager
00044 {
00045
00046 public:
00047
00048 ACE_QoS_Manager (void);
00049
00050
00051 ~ACE_QoS_Manager (void);
00052
00053
00054
00055
00056
00057
00058 int join_qos_session (ACE_QoS_Session *qos_session);
00059
00060 typedef ACE_Unbounded_Set <ACE_QoS_Session *> ACE_QOS_SESSION_SET;
00061
00062
00063 ACE_QOS_SESSION_SET qos_session_set (void);
00064
00065 private:
00066
00067
00068 ACE_QOS_SESSION_SET qos_session_set_;
00069 };
00070
00071 ACE_END_VERSIONED_NAMESPACE_DECL
00072
00073 #include "ace/post.h"
00074 #endif