OpenDDS  Snapshot(2023/04/28-20:55)
Public Member Functions | Public Attributes | List of all members
OpenDDS::XTypes::AppliedAnnotation Struct Reference

#include <TypeObject.h>

Collaboration diagram for OpenDDS::XTypes::AppliedAnnotation:
Collaboration graph
[legend]

Public Member Functions

 AppliedAnnotation ()
 
 AppliedAnnotation (const TypeIdentifier &ann_typeid, const Optional< AppliedAnnotationParameterSeq > &a_param_seq)
 
bool operator< (const AppliedAnnotation &other) const
 
bool operator== (const AppliedAnnotation &other) const
 
bool operator!= (const AppliedAnnotation &other) const
 

Public Attributes

TypeIdentifier annotation_typeid
 
Optional< AppliedAnnotationParameterSeqparam_seq
 

Detailed Description

Definition at line 1137 of file TypeObject.h.

Constructor & Destructor Documentation

◆ AppliedAnnotation() [1/2]

OpenDDS::XTypes::AppliedAnnotation::AppliedAnnotation ( )
inline

Definition at line 1141 of file TypeObject.h.

1141 {}

◆ AppliedAnnotation() [2/2]

OpenDDS::XTypes::AppliedAnnotation::AppliedAnnotation ( const TypeIdentifier ann_typeid,
const Optional< AppliedAnnotationParameterSeq > &  a_param_seq 
)
inline

Definition at line 1143 of file TypeObject.h.

1145  : annotation_typeid(ann_typeid)
1146  , param_seq(a_param_seq)
1147  {}
Optional< AppliedAnnotationParameterSeq > param_seq
Definition: TypeObject.h:1139

Member Function Documentation

◆ operator!=()

bool OpenDDS::XTypes::AppliedAnnotation::operator!= ( const AppliedAnnotation other) const
inline

Definition at line 1159 of file TypeObject.h.

1160  {
1161  return !(*this == other);
1162  }

◆ operator<()

bool OpenDDS::XTypes::AppliedAnnotation::operator< ( const AppliedAnnotation other) const
inline

Definition at line 1149 of file TypeObject.h.

References annotation_typeid.

1150  {
1151  return annotation_typeid < other.annotation_typeid;
1152  }

◆ operator==()

bool OpenDDS::XTypes::AppliedAnnotation::operator== ( const AppliedAnnotation other) const
inline

Definition at line 1154 of file TypeObject.h.

References annotation_typeid, and param_seq.

1155  {
1156  return annotation_typeid == other.annotation_typeid && param_seq == other.param_seq;
1157  }
Optional< AppliedAnnotationParameterSeq > param_seq
Definition: TypeObject.h:1139

Member Data Documentation

◆ annotation_typeid

TypeIdentifier OpenDDS::XTypes::AppliedAnnotation::annotation_typeid

◆ param_seq

Optional<AppliedAnnotationParameterSeq> OpenDDS::XTypes::AppliedAnnotation::param_seq

The documentation for this struct was generated from the following file: