OpenDDS  Snapshot(2023/04/28-20:55)
Public Member Functions | Public Attributes | List of all members
OpenDDS::XTypes::PlainSequenceSElemDefn Struct Reference

#include <TypeObject.h>

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

Public Member Functions

 PlainSequenceSElemDefn ()
 
 PlainSequenceSElemDefn (const PlainCollectionHeader &a_header, const SBound &a_bound, const TypeIdentifier &a_element_identifier)
 
bool operator< (const PlainSequenceSElemDefn &other) const
 

Public Attributes

PlainCollectionHeader header
 
SBound bound
 
External< TypeIdentifierelement_identifier
 

Detailed Description

Definition at line 483 of file TypeObject.h.

Constructor & Destructor Documentation

◆ PlainSequenceSElemDefn() [1/2]

OpenDDS::XTypes::PlainSequenceSElemDefn::PlainSequenceSElemDefn ( )
inline

Definition at line 488 of file TypeObject.h.

◆ PlainSequenceSElemDefn() [2/2]

OpenDDS::XTypes::PlainSequenceSElemDefn::PlainSequenceSElemDefn ( const PlainCollectionHeader a_header,
const SBound a_bound,
const TypeIdentifier a_element_identifier 
)
inline

Definition at line 492 of file TypeObject.h.

References OpenDDS::DCPS::operator<().

495  : header(a_header)
496  , bound(a_bound)
497  , element_identifier(a_element_identifier)
498  {}
External< TypeIdentifier > element_identifier
Definition: TypeObject.h:486

Member Function Documentation

◆ operator<()

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

Definition at line 833 of file TypeObject.h.

References bound, element_identifier, header, and header.

834  {
835  if (header < other.header) return true;
836  if (other.header < header) return false;
837  if (bound < other.bound) return true;
838  if (other.bound < bound) return false;
839  if (*element_identifier < *other.element_identifier) return true;
840  if (*other.element_identifier < *element_identifier) return false;
841  return false;
842  }
External< TypeIdentifier > element_identifier
Definition: TypeObject.h:486

Member Data Documentation

◆ bound

SBound OpenDDS::XTypes::PlainSequenceSElemDefn::bound

◆ element_identifier

External<TypeIdentifier> OpenDDS::XTypes::PlainSequenceSElemDefn::element_identifier

◆ header

PlainCollectionHeader OpenDDS::XTypes::PlainSequenceSElemDefn::header

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