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::ExtraDropInfo Struct Referenceabstract
Inheritance diagram for duckdb::ExtraDropInfo:

Public Member Functions

 ExtraDropInfo (ExtraDropInfoType info_type)
 
template<class TARGET >
TARGETCast ()
 
template<class TARGET >
const TARGETCast () const
 
virtual unique_ptr< ExtraDropInfoCopy () const =0
 
virtual void Serialize (Serializer &serializer) const
 

Static Public Member Functions

static unique_ptr< ExtraDropInfoDeserialize (Deserializer &deserializer)
 

Public Attributes

ExtraDropInfoType info_type
 

Constructor & Destructor Documentation

◆ ExtraDropInfo()

duckdb::ExtraDropInfo::ExtraDropInfo ( ExtraDropInfoType  info_type)
inlineexplicit
6710 : info_type(info_type) {
6711 }

◆ ~ExtraDropInfo()

virtual duckdb::ExtraDropInfo::~ExtraDropInfo ( )
inlinevirtual
6712 {
6713 }

Member Function Documentation

◆ Cast() [1/2]

template<class TARGET >
TARGET & duckdb::ExtraDropInfo::Cast ( )
inline
6719 {
6720 DynamicCastCheck<TARGET>(this);
6721 return reinterpret_cast<TARGET &>(*this);
6722 }

◆ Cast() [2/2]

template<class TARGET >
const TARGET & duckdb::ExtraDropInfo::Cast ( ) const
inline
6725 {
6726 DynamicCastCheck<TARGET>(this);
6727 return reinterpret_cast<const TARGET &>(*this);
6728 }

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