summaryrefslogtreecommitdiff
path: root/orbsvcs/orbsvcs/IFRService/EventPortDef_i.h
diff options
context:
space:
mode:
Diffstat (limited to 'orbsvcs/orbsvcs/IFRService/EventPortDef_i.h')
-rw-r--r--orbsvcs/orbsvcs/IFRService/EventPortDef_i.h42
1 files changed, 13 insertions, 29 deletions
diff --git a/orbsvcs/orbsvcs/IFRService/EventPortDef_i.h b/orbsvcs/orbsvcs/IFRService/EventPortDef_i.h
index dfef85ad61e..23947ddff95 100644
--- a/orbsvcs/orbsvcs/IFRService/EventPortDef_i.h
+++ b/orbsvcs/orbsvcs/IFRService/EventPortDef_i.h
@@ -34,16 +34,13 @@
TAO_BEGIN_VERSIONED_NAMESPACE_DECL
+/**
+ * Represents an event port definition. EmitsDef_i, PublishesDef_i,
+ * and ConsumesDef_i inherit from this.
+ */
class TAO_IFRService_Export TAO_EventPortDef_i
: public virtual TAO_Contained_i
{
- // = TITLE
- // TAO_EventPortDef_i
- //
- // = DESCRIPTION
- // Represents an event port definition. EmitsDef_i, PublishesDef_i,
- // and ConsumesDef_i inherit from this.
- //
public:
//// Constructor
TAO_EventPortDef_i (TAO_Repository_i *repo);
@@ -51,44 +48,31 @@ public:
//// Destructor
virtual ~TAO_EventPortDef_i (void);
- virtual CORBA::ComponentIR::EventDef_ptr event (
- );
+ virtual CORBA::ComponentIR::EventDef_ptr event (void);
- CORBA::ComponentIR::EventDef_ptr event_i (
- );
+ CORBA::ComponentIR::EventDef_ptr event_i (void);
- virtual void event (
- CORBA::ComponentIR::EventDef_ptr event
- );
+ virtual void event (CORBA::ComponentIR::EventDef_ptr event);
- void event_i (
- CORBA::ComponentIR::EventDef_ptr event
- );
+ void event_i (CORBA::ComponentIR::EventDef_ptr event);
- virtual CORBA::Boolean is_a (
- const char *event_id
- );
+ virtual CORBA::Boolean is_a (const char *event_id);
- CORBA::Boolean is_a_i (
- const char *event_id
- );
+ CORBA::Boolean is_a_i (const char *event_id);
/// This can be the same for the three derived classes, so it is
/// implemented here.
/// From Contained_i's pure virtual function.
- virtual CORBA::Contained::Description *describe (
- );
+ virtual CORBA::Contained::Description *describe (void);
/// From Contained_i's pure virtual function.
- virtual CORBA::Contained::Description *describe_i (
- );
+ virtual CORBA::Contained::Description *describe_i (void);
private:
/// Dummy method so we can consolidate derived class methods
/// in this 'abstract' base class.
- virtual CORBA::DefinitionKind def_kind (
- );
+ virtual CORBA::DefinitionKind def_kind (void);
};
TAO_END_VERSIONED_NAMESPACE_DECL