blob: 9d9dfe89c47b7769e3effbfcf15cdfc9811108e5 (
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 <iostream>
#include <cstring>
#include <string>
#include <sstream>
#include <thread>
#include <chrono>
#include <memory>
#include <stdexcept>
#include <array>
using namespace std;
using namespace this_thread;
using namespace chrono;
int jo_notify(const string);
int jo_speak (const string);
string jo_exec (const char*);
#endif
|