#ifndef PROGRAM_H #define PROGRAM_H #include "DolibarrClient.h" #include "GRBL.h" #include "NfcReader.h" #include #include // #include class Program { public: /** * Program startup */ Program(); /** * Program WarehouseGUI loop */ void loop(); private: DolibarrClient *client; /** * @brief stepper motor controller */ GRBL* grbl; /** * @brief nfc reader * */ NfcReader* NFC; }; #endif