OpenDDS  Snapshot(2023/04/07-19:43)
Public Member Functions | Public Attributes | List of all members
OpenDDS::XTypes::CompleteMemberDetail Struct Reference

#include <TypeObject.h>

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

Public Member Functions

 CompleteMemberDetail ()
 
 CompleteMemberDetail (const MemberName &a_name, const Optional< AppliedBuiltinMemberAnnotations > &an_ann_builtin, const Optional< AppliedAnnotationSeq > &an_ann_custom)
 
bool operator== (const CompleteMemberDetail &other) const
 
bool operator!= (const CompleteMemberDetail &other) const
 

Public Attributes

MemberName name
 
Optional< AppliedBuiltinMemberAnnotationsann_builtin
 
Optional< AppliedAnnotationSeqann_custom
 

Detailed Description

Definition at line 1249 of file TypeObject.h.

Constructor & Destructor Documentation

◆ CompleteMemberDetail() [1/2]

OpenDDS::XTypes::CompleteMemberDetail::CompleteMemberDetail ( )
inline

Definition at line 1254 of file TypeObject.h.

1254 {}

◆ CompleteMemberDetail() [2/2]

OpenDDS::XTypes::CompleteMemberDetail::CompleteMemberDetail ( const MemberName a_name,
const Optional< AppliedBuiltinMemberAnnotations > &  an_ann_builtin,
const Optional< AppliedAnnotationSeq > &  an_ann_custom 
)
inline

Definition at line 1256 of file TypeObject.h.

1259  : name(a_name)
1260  , ann_builtin(an_ann_builtin)
1261  , ann_custom(an_ann_custom)
1262  {}
Optional< AppliedAnnotationSeq > ann_custom
Definition: TypeObject.h:1252
Optional< AppliedBuiltinMemberAnnotations > ann_builtin
Definition: TypeObject.h:1251

Member Function Documentation

◆ operator!=()

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

Definition at line 1269 of file TypeObject.h.

1270  {
1271  return !(*this == other);
1272  }

◆ operator==()

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

Definition at line 1264 of file TypeObject.h.

References ann_builtin, ann_custom, and name.

1265  {
1266  return name == other.name && ann_builtin == other.ann_builtin && ann_custom == other.ann_custom;
1267  }
Optional< AppliedAnnotationSeq > ann_custom
Definition: TypeObject.h:1252
Optional< AppliedBuiltinMemberAnnotations > ann_builtin
Definition: TypeObject.h:1251

Member Data Documentation

◆ ann_builtin

Optional<AppliedBuiltinMemberAnnotations> OpenDDS::XTypes::CompleteMemberDetail::ann_builtin

◆ ann_custom

Optional<AppliedAnnotationSeq> OpenDDS::XTypes::CompleteMemberDetail::ann_custom

◆ name

MemberName OpenDDS::XTypes::CompleteMemberDetail::name

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