123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657 |
- /*
- Author: Tobias Müller
- Date: 30.06.2023
- Version: 1.0
- Main header file.
- */
- #ifndef FOO_H
- #define FOO_H
- ////////////////////////////// Libraries //////////////////////////////
- #include <stdio.h>
- #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
|