/* Author: Tobias Müller Date: 30.06.2023 Version: 1.0 Main header file. */ #ifndef FOO_H #define FOO_H ////////////////////////////// Libraries ////////////////////////////// #include #include "pico/stdlib.h" ////////////////////////////// Symbols ////////////////////////////// ////////////////////////////// Class ////////////////////////////// /** * @brief Test class * */ class foo { public: ////////////////////////// Attributes ////////////////////////// ////////////////////////// Constructor ////////////////////////// /** * @brief Construct a new foo object * */ foo(); ////////////////////////// Deconstructor ////////////////////////// /** * @brief Destroy the foo object * */ ~foo(); ////////////////////////// Methods ////////////////////////// /** * @brief Test method * */ void bar(void); }; #endif