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

#include <TypeObject.h>

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

Public Member Functions

 MinimalStructType ()
 
 MinimalStructType (const StructTypeFlag &a_struct_flags, const MinimalStructHeader &a_header, const MinimalStructMemberSeq &a_member_seq)
 
bool operator== (const MinimalStructType &other) const
 
bool operator!= (const MinimalStructType &other) const
 

Public Attributes

StructTypeFlag struct_flags
 
MinimalStructHeader header
 
MinimalStructMemberSeq member_seq
 

Detailed Description

Definition at line 1502 of file TypeObject.h.

Constructor & Destructor Documentation

◆ MinimalStructType() [1/2]

OpenDDS::XTypes::MinimalStructType::MinimalStructType ( )
inline

Definition at line 1507 of file TypeObject.h.

1508  : struct_flags(0)
1509  {}

◆ MinimalStructType() [2/2]

OpenDDS::XTypes::MinimalStructType::MinimalStructType ( const StructTypeFlag a_struct_flags,
const MinimalStructHeader a_header,
const MinimalStructMemberSeq a_member_seq 
)
inline

Definition at line 1511 of file TypeObject.h.

1514  : struct_flags(a_struct_flags)
1515  , header(a_header)
1516  , member_seq(a_member_seq)
1517  {}
MinimalStructMemberSeq member_seq
Definition: TypeObject.h:1505

Member Function Documentation

◆ operator!=()

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

Definition at line 1524 of file TypeObject.h.

1525  {
1526  return !(*this == other);
1527  }

◆ operator==()

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

Definition at line 1519 of file TypeObject.h.

References header, member_seq, and struct_flags.

1520  {
1521  return struct_flags == other.struct_flags && header == other.header && member_seq == other.member_seq;
1522  }
MinimalStructMemberSeq member_seq
Definition: TypeObject.h:1505

Member Data Documentation

◆ header

MinimalStructHeader OpenDDS::XTypes::MinimalStructType::header

◆ member_seq

MinimalStructMemberSeq OpenDDS::XTypes::MinimalStructType::member_seq

◆ struct_flags

StructTypeFlag OpenDDS::XTypes::MinimalStructType::struct_flags

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