![]() |
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.
|


Public Member Functions | |
| TransactionInfo (TransactionType type, TransactionInvalidationPolicy invalidation_policy=TransactionInvalidationPolicy::STANDARD_POLICY, bool auto_rollback=false) | |
| void | Serialize (Serializer &serializer) const override |
| string | ToString () const |
| unique_ptr< TransactionInfo > | Copy () const |
Public Member Functions inherited from duckdb::ParseInfo | |
| ParseInfo (ParseInfoType info_type) | |
| template<class TARGET > | |
| TARGET & | Cast () |
| template<class TARGET > | |
| const TARGET & | Cast () const |
Static Public Member Functions | |
| static unique_ptr< ParseInfo > | Deserialize (Deserializer &deserializer) |
Static Public Member Functions inherited from duckdb::ParseInfo | |
| static unique_ptr< ParseInfo > | Deserialize (Deserializer &deserializer) |
| static string | QualifierToString (const string &catalog, const string &schema, const string &name) |
| static string | TypeToString (CatalogType type) |
Public Attributes | |
| TransactionType | type |
| The type of transaction statement. | |
| TransactionModifierType | modifier |
| Whether or not a transaction can make modifications to the database. | |
| TransactionInvalidationPolicy | invalidation_policy |
| Which types of exceptions invalidate the database. | |
| bool | auto_rollback |
| If transaction fails, automatically do a ROLLBACK;. | |
Public Attributes inherited from duckdb::ParseInfo | |
| ParseInfoType | info_type |
Static Public Attributes | |
| static constexpr const ParseInfoType | TYPE = ParseInfoType::TRANSACTION_INFO |
|
overridevirtual |
Reimplemented from duckdb::ParseInfo.