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

#include <TypeObject.h>

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

Public Member Functions

 TypeIdentifierPair ()
 
 TypeIdentifierPair (const TypeIdentifier &t1, const TypeIdentifier &t2)
 
bool operator== (const TypeIdentifierPair &other) const
 
bool operator!= (const TypeIdentifierPair &other) const
 

Public Attributes

TypeIdentifier type_identifier1
 
TypeIdentifier type_identifier2
 

Detailed Description

Definition at line 3308 of file TypeObject.h.

Constructor & Destructor Documentation

◆ TypeIdentifierPair() [1/2]

OpenDDS::XTypes::TypeIdentifierPair::TypeIdentifierPair ( )
inline

Definition at line 3312 of file TypeObject.h.

3312 {}

◆ TypeIdentifierPair() [2/2]

OpenDDS::XTypes::TypeIdentifierPair::TypeIdentifierPair ( const TypeIdentifier t1,
const TypeIdentifier t2 
)
inline

Definition at line 3314 of file TypeObject.h.

3315  : type_identifier1(t1)
3316  , type_identifier2(t2)
3317  {}

Member Function Documentation

◆ operator!=()

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

Definition at line 3324 of file TypeObject.h.

3325  {
3326  return !(*this == other);
3327  }

◆ operator==()

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

Definition at line 3319 of file TypeObject.h.

References type_identifier1, and type_identifier2.

3320  {
3321  return type_identifier1 == other.type_identifier1 && type_identifier2 == other.type_identifier2;
3322  }

Member Data Documentation

◆ type_identifier1

TypeIdentifier OpenDDS::XTypes::TypeIdentifierPair::type_identifier1

◆ type_identifier2

TypeIdentifier OpenDDS::XTypes::TypeIdentifierPair::type_identifier2

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