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

#include <TypeObject.h>

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

Public Member Functions

 MinimalSequenceType ()
 
 MinimalSequenceType (CollectionTypeFlag a_collection_flag, const MinimalCollectionHeader &a_header, const MinimalCollectionElement &a_element)
 
bool operator== (const MinimalSequenceType &other) const
 
bool operator!= (const MinimalSequenceType &other) const
 

Public Attributes

CollectionTypeFlag collection_flag
 
MinimalCollectionHeader header
 
MinimalCollectionElement element
 

Detailed Description

Definition at line 2281 of file TypeObject.h.

Constructor & Destructor Documentation

◆ MinimalSequenceType() [1/2]

OpenDDS::XTypes::MinimalSequenceType::MinimalSequenceType ( )
inline

Definition at line 2286 of file TypeObject.h.

2287  : collection_flag(0)
2288  , header()
2289  , element()
2290  {}
MinimalCollectionHeader header
Definition: TypeObject.h:2283
MinimalCollectionElement element
Definition: TypeObject.h:2284

◆ MinimalSequenceType() [2/2]

OpenDDS::XTypes::MinimalSequenceType::MinimalSequenceType ( CollectionTypeFlag  a_collection_flag,
const MinimalCollectionHeader a_header,
const MinimalCollectionElement a_element 
)
inline

Definition at line 2292 of file TypeObject.h.

2295  : collection_flag(a_collection_flag)
2296  , header(a_header)
2297  , element(a_element)
2298  {}
MinimalCollectionHeader header
Definition: TypeObject.h:2283
MinimalCollectionElement element
Definition: TypeObject.h:2284

Member Function Documentation

◆ operator!=()

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

Definition at line 2305 of file TypeObject.h.

2306  {
2307  return !(*this == other);
2308  }

◆ operator==()

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

Definition at line 2300 of file TypeObject.h.

References collection_flag, element, and header.

2301  {
2302  return collection_flag == other.collection_flag && header == other.header && element == other.element;
2303  }
MinimalCollectionHeader header
Definition: TypeObject.h:2283
MinimalCollectionElement element
Definition: TypeObject.h:2284

Member Data Documentation

◆ collection_flag

CollectionTypeFlag OpenDDS::XTypes::MinimalSequenceType::collection_flag

◆ element

MinimalCollectionElement OpenDDS::XTypes::MinimalSequenceType::element

◆ header

MinimalCollectionHeader OpenDDS::XTypes::MinimalSequenceType::header

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