aboutsummaryrefslogtreecommitdiffstats
path: root/inc/jo_lowbat.hpp
blob: 57da23a33d4186190ae4a598bc7ad851c87732d0 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
#ifndef JO_LOWBAT_HPP
#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*);

#endif