summaryrefslogtreecommitdiff
path: root/TAO/orbsvcs/orbsvcs/Event
diff options
context:
space:
mode:
authorJohnny Willemsen <jwillemsen@remedy.nl>2003-06-19 06:15:04 +0000
committerJohnny Willemsen <jwillemsen@remedy.nl>2003-06-19 06:15:04 +0000
commit971e025e908835e0e15abec09e58777f2abe831c (patch)
tree7d03bab9e2e6bb57156465e38d9638985c392250 /TAO/orbsvcs/orbsvcs/Event
parentf4d8cd300569b673f58a4436f50b6b3806dc5231 (diff)
downloadATCD-971e025e908835e0e15abec09e58777f2abe831c.tar.gz
ChangeLogTag: Thu Jun 19 06:11:12 UTC 2003 Johnny Willemsen <jwillemsen@remedy.nl>
Diffstat (limited to 'TAO/orbsvcs/orbsvcs/Event')
-rw-r--r--TAO/orbsvcs/orbsvcs/Event/ECG_Address_Server_Base.h2
-rw-r--r--TAO/orbsvcs/orbsvcs/Event/ECG_CDR_Message_Receiver.h6
-rw-r--r--TAO/orbsvcs/orbsvcs/Event/ECG_UDP_Receiver.h6
-rw-r--r--TAO/orbsvcs/orbsvcs/Event/ECG_UDP_Sender.h6
-rw-r--r--TAO/orbsvcs/orbsvcs/Event/EC_Filter.cpp3
-rw-r--r--TAO/orbsvcs/orbsvcs/Event/EC_Filter.h2
-rw-r--r--TAO/orbsvcs/orbsvcs/Event/EC_Supplier_Filter_Builder.h2
7 files changed, 14 insertions, 13 deletions
diff --git a/TAO/orbsvcs/orbsvcs/Event/ECG_Address_Server_Base.h b/TAO/orbsvcs/orbsvcs/Event/ECG_Address_Server_Base.h
index abdeb33eeab..7d55f459455 100644
--- a/TAO/orbsvcs/orbsvcs/Event/ECG_Address_Server_Base.h
+++ b/TAO/orbsvcs/orbsvcs/Event/ECG_Address_Server_Base.h
@@ -18,7 +18,7 @@
#include "ace/Auto_Ptr.h"
/**
- * @class TAO_ECG_Simple_Address_Server
+ * @class TAO_ECG_Address_Server_Base
*
* @brief All implementations of RtecUDPAdmin::AddrServer idl
* interface should inherit from this abstract base.
diff --git a/TAO/orbsvcs/orbsvcs/Event/ECG_CDR_Message_Receiver.h b/TAO/orbsvcs/orbsvcs/Event/ECG_CDR_Message_Receiver.h
index a461fd0c457..cb9a35f9318 100644
--- a/TAO/orbsvcs/orbsvcs/Event/ECG_CDR_Message_Receiver.h
+++ b/TAO/orbsvcs/orbsvcs/Event/ECG_CDR_Message_Receiver.h
@@ -80,7 +80,7 @@ public:
/// Is the message complete?
int complete (void) const;
- /// Return a buffer for the fragment at offset <fragment_offset>
+ /// Return a buffer for the fragment at offset @a fragment_offset
char* fragment_buffer (CORBA::ULong fragment_offset);
private:
@@ -155,8 +155,8 @@ public:
void shutdown (void);
//@}
- /// Main method: read the data from <dgram> and either pass ready data
- /// to <cdr_processor> or update the <request_map_> if the request
+ /// Main method: read the data from @a dgram and either pass ready data
+ /// to @a cdr_processor or update the <request_map_> if the request
/// is not yet complete.
/**
* Returns 1 if data was read successfully and accepted by
diff --git a/TAO/orbsvcs/orbsvcs/Event/ECG_UDP_Receiver.h b/TAO/orbsvcs/orbsvcs/Event/ECG_UDP_Receiver.h
index b23c50c89cf..0fa98e52452 100644
--- a/TAO/orbsvcs/orbsvcs/Event/ECG_UDP_Receiver.h
+++ b/TAO/orbsvcs/orbsvcs/Event/ECG_UDP_Receiver.h
@@ -57,12 +57,12 @@ class ACE_Reactor;
/**
* @class TAO_ECG_UDP_Receiver_Disconnect_Command
*
- * @brief Disconnects supplier represented by <proxy> from the Event Channel.
+ * @brief Disconnects supplier represented by @a proxy from the Event Channel.
*
* Utility class for use as a template argument to TAO_EC_Auto_Command.
* TAO_EC_Auto_Command<TAO_ECG_UDP_Receiver_Disconnect_Command> manages
* supplier connection to the Event Channel, automatically disconnecting from
- * <proxy> in its destructor, if necessary.
+ * @a proxy in its destructor, if necessary.
*/
class TAO_RTEvent_Export TAO_ECG_UDP_Receiver_Disconnect_Command
{
@@ -116,7 +116,7 @@ public:
* @param lcl_ec Event Channel to which we will act as a supplier of events.
* @param ignore_from Endpoint used to remove events generated by
* the same process.
- * @param add_server Address server used to obtain mapping of event type
+ * @param addr_server Address server used to obtain mapping of event type
* to multicast group.
* To insure proper resource clean up, if init () is successful,
* shutdown () must be called when the receiver is no longer needed.
diff --git a/TAO/orbsvcs/orbsvcs/Event/ECG_UDP_Sender.h b/TAO/orbsvcs/orbsvcs/Event/ECG_UDP_Sender.h
index a5919581195..5c2486d51d5 100644
--- a/TAO/orbsvcs/orbsvcs/Event/ECG_UDP_Sender.h
+++ b/TAO/orbsvcs/orbsvcs/Event/ECG_UDP_Sender.h
@@ -57,12 +57,12 @@ class TAO_ECG_UDP_Out_Endpoint;
/**
* @class TAO_ECG_UDP_Sender_Disconnect_Command
*
- * @brief Disconnects consumer represented by <proxy> from the Event Channel.
+ * @brief Disconnects consumer represented by @a proxy from the Event Channel.
*
* Utility class for use as a template argument to TAO_EC_Auto_Command.
* TAO_EC_Auto_Command<TAO_ECG_UDP_Sender_Disconnect_Command> manages
* consumer connection to the Event Channel, automatically disconnecting from
- * <proxy> in its destructor, if necessary.
+ * @a proxy in its destructor, if necessary.
*/
class TAO_RTEvent_Export TAO_ECG_UDP_Sender_Disconnect_Command
{
@@ -115,7 +115,7 @@ public:
* @param lcl_ec Event Channel to which we will act as a consumer of events.
* @param addr_server Address server used to obtain event type to
* multicast group mapping.
- * @param endpoint Endpoint for sending udp/multicast messages.
+ * @param endpoint_rptr Endpoint for sending udp/multicast messages.
* Endpoint's dgram must be open!
*
* To insure proper resource clean up, if init () is successful,
diff --git a/TAO/orbsvcs/orbsvcs/Event/EC_Filter.cpp b/TAO/orbsvcs/orbsvcs/Event/EC_Filter.cpp
index aebd91da40b..740133cfb24 100644
--- a/TAO/orbsvcs/orbsvcs/Event/EC_Filter.cpp
+++ b/TAO/orbsvcs/orbsvcs/Event/EC_Filter.cpp
@@ -37,9 +37,10 @@ TAO_EC_Filter::size (void) const
}
void
-TAO_EC_Filter::get_qos_info (TAO_EC_QOS_Info&
+TAO_EC_Filter::get_qos_info (TAO_EC_QOS_Info& qos_info
ACE_ENV_ARG_DECL)
{
+ ACE_UNUSED_ARG (qos_info);
ACE_THROW (CORBA::NO_IMPLEMENT (TAO_DEFAULT_MINOR_CODE,
CORBA::COMPLETED_NO));
}
diff --git a/TAO/orbsvcs/orbsvcs/Event/EC_Filter.h b/TAO/orbsvcs/orbsvcs/Event/EC_Filter.h
index ae182c5cd66..9af013f3291 100644
--- a/TAO/orbsvcs/orbsvcs/Event/EC_Filter.h
+++ b/TAO/orbsvcs/orbsvcs/Event/EC_Filter.h
@@ -146,7 +146,7 @@ public:
* Obtain the QOS information for this filter, the default
* implementation returns an invalid QOS. Only the filters that
* support scheduling information implement this method.
- * Returns 0 on success and -1 on failure
+ * @return Returns 0 on success and -1 on failure
*/
virtual void get_qos_info (TAO_EC_QOS_Info& qos_info
ACE_ENV_ARG_DECL);
diff --git a/TAO/orbsvcs/orbsvcs/Event/EC_Supplier_Filter_Builder.h b/TAO/orbsvcs/orbsvcs/Event/EC_Supplier_Filter_Builder.h
index e0806db62b2..e2ac872d681 100644
--- a/TAO/orbsvcs/orbsvcs/Event/EC_Supplier_Filter_Builder.h
+++ b/TAO/orbsvcs/orbsvcs/Event/EC_Supplier_Filter_Builder.h
@@ -37,7 +37,7 @@ class TAO_EC_ProxyPushConsumer;
class TAO_RTEvent_Export TAO_EC_Supplier_Filter_Builder
{
public:
- /// destructor...
+ /// Destructor...
virtual ~TAO_EC_Supplier_Filter_Builder (void);
/**