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

#include <TypeObject.h>

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

Public Member Functions

 CompleteEnumeratedLiteral ()
 
 CompleteEnumeratedLiteral (const CommonEnumeratedLiteral &a_common, const CompleteMemberDetail &a_detail)
 
bool operator< (const CompleteEnumeratedLiteral &other) const
 
bool operator== (const CompleteEnumeratedLiteral &other) const
 
bool operator!= (const CompleteEnumeratedLiteral &other) const
 

Public Attributes

CommonEnumeratedLiteral common
 
CompleteMemberDetail detail
 

Detailed Description

Definition at line 2508 of file TypeObject.h.

Constructor & Destructor Documentation

◆ CompleteEnumeratedLiteral() [1/2]

OpenDDS::XTypes::CompleteEnumeratedLiteral::CompleteEnumeratedLiteral ( )
inline

Definition at line 2512 of file TypeObject.h.

2512 {}

◆ CompleteEnumeratedLiteral() [2/2]

OpenDDS::XTypes::CompleteEnumeratedLiteral::CompleteEnumeratedLiteral ( const CommonEnumeratedLiteral a_common,
const CompleteMemberDetail a_detail 
)
inline

Definition at line 2514 of file TypeObject.h.

2516  : common(a_common)
2517  , detail(a_detail)
2518  {}

Member Function Documentation

◆ operator!=()

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

Definition at line 2530 of file TypeObject.h.

2531  {
2532  return !(*this == other);
2533  }

◆ operator<()

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

Definition at line 2520 of file TypeObject.h.

References common, and OpenDDS::XTypes::CommonEnumeratedLiteral::value.

2521  {
2522  return common.value < other.common.value;
2523  }

◆ operator==()

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

Definition at line 2525 of file TypeObject.h.

References common, and detail.

2526  {
2527  return common == other.common && detail == other.detail;
2528  }

Member Data Documentation

◆ common

CommonEnumeratedLiteral OpenDDS::XTypes::CompleteEnumeratedLiteral::common

◆ detail

CompleteMemberDetail OpenDDS::XTypes::CompleteEnumeratedLiteral::detail

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