diff options
Diffstat (limited to 'inc/jo_lowbat.hpp')
-rw-r--r-- | inc/jo_lowbat.hpp | 10 |
1 files changed, 10 insertions, 0 deletions
diff --git a/inc/jo_lowbat.hpp b/inc/jo_lowbat.hpp index fd00892..57da23a 100644 --- a/inc/jo_lowbat.hpp +++ b/inc/jo_lowbat.hpp @@ -2,9 +2,19 @@ #define JO_LOWBAT_HPP #include <string> +#include <cstdint> using namespace std; +class Lowbat { +public: + uint8_t jo_testAcpi(void); + int jo_notify(const string); + int jo_speak(const string); + string jo_exec(const char*); +private: +}; + int jo_notify(const string); int jo_speak (const string); string jo_exec (const char*); |