Autonomy Software C++ 24.5.1
Welcome to the Autonomy Software repository of the Mars Rover Design Team (MRDT) at Missouri University of Science and Technology (Missouri S&T)! API reference contains the source code and other resources for the development of the autonomy software for our Mars rover. The Autonomy Software project aims to compete in the University Rover Challenge (URC) by demonstrating advanced autonomous capabilities and robust navigation algorithms.
Loading...
Searching...
No Matches
duckdb::ExtraPersistentColumnData Class Reference
Inheritance diagram for duckdb::ExtraPersistentColumnData:

Public Member Functions

ExtraPersistentColumnDataType GetType () const
 
template<class TARGET >
TARGETCast ()
 
template<class TARGET >
const TARGETCast () const
 
void Serialize (Serializer &serializer) const
 

Static Public Member Functions

static unique_ptr< ExtraPersistentColumnDataDeserialize (Deserializer &deserializer)
 

Protected Member Functions

 ExtraPersistentColumnData (ExtraPersistentColumnDataType type_p)
 

Private Attributes

ExtraPersistentColumnDataType type
 

Constructor & Destructor Documentation

◆ ExtraPersistentColumnData()

duckdb::ExtraPersistentColumnData::ExtraPersistentColumnData ( ExtraPersistentColumnDataType  type_p)
inlineexplicitprotected
49520 : type(type_p) {
49521 }

Member Function Documentation

◆ GetType()

ExtraPersistentColumnDataType duckdb::ExtraPersistentColumnData::GetType ( ) const
inline
49497 {
49498 return type;
49499 }

◆ Cast() [1/2]

template<class TARGET >
TARGET & duckdb::ExtraPersistentColumnData::Cast ( )
inline
49504 {
49505 D_ASSERT(type == TARGET::TYPE);
49506 DynamicCastCheck<TARGET>(this);
49507 return reinterpret_cast<TARGET &>(*this);
49508 }

◆ Cast() [2/2]

template<class TARGET >
const TARGET & duckdb::ExtraPersistentColumnData::Cast ( ) const
inline
49510 {
49511 D_ASSERT(type == TARGET::TYPE);
49512 DynamicCastCheck<TARGET>(this);
49513 return reinterpret_cast<const TARGET &>(*this);
49514 }

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