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

#include <TypeObject.h>

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

Public Member Functions

 CompleteAliasType ()
 
 CompleteAliasType (const AliasTypeFlag &a_alias_flags, const CompleteAliasHeader &a_header, const CompleteAliasBody &a_body)
 
bool operator== (const CompleteAliasType &other) const
 
bool operator!= (const CompleteAliasType &other) const
 

Public Attributes

AliasTypeFlag alias_flags
 
CompleteAliasHeader header
 
CompleteAliasBody body
 

Detailed Description

Definition at line 2041 of file TypeObject.h.

Constructor & Destructor Documentation

◆ CompleteAliasType() [1/2]

OpenDDS::XTypes::CompleteAliasType::CompleteAliasType ( )
inline

Definition at line 2046 of file TypeObject.h.

2047  : alias_flags(0)
2048  {}

◆ CompleteAliasType() [2/2]

OpenDDS::XTypes::CompleteAliasType::CompleteAliasType ( const AliasTypeFlag a_alias_flags,
const CompleteAliasHeader a_header,
const CompleteAliasBody a_body 
)
inline

Definition at line 2050 of file TypeObject.h.

2053  : alias_flags(a_alias_flags)
2054  , header(a_header)
2055  , body(a_body)
2056  {}

Member Function Documentation

◆ operator!=()

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

Definition at line 2063 of file TypeObject.h.

2064  {
2065  return !(*this == other);
2066  }

◆ operator==()

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

Definition at line 2058 of file TypeObject.h.

References alias_flags, body, and header.

2059  {
2060  return alias_flags == other.alias_flags && header == other.header && body == other.body;
2061  }

Member Data Documentation

◆ alias_flags

AliasTypeFlag OpenDDS::XTypes::CompleteAliasType::alias_flags

◆ body

CompleteAliasBody OpenDDS::XTypes::CompleteAliasType::body

◆ header

CompleteAliasHeader OpenDDS::XTypes::CompleteAliasType::header

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