Elma
An event loop manager for embedded systems
elma.h
1 #ifndef _ELMA_H
2 #define _ELMA_H
3 
4 // Utilities
5 #include "literals.h"
6 #include "exceptions.h"
7 
8 // Communications
9 #include "channel.h"
10 #include "event.h"
11 
12 // HTTP
13 #include "client.h"
14 
15 // Processes
16 #include "process.h"
17 #include "manager.h"
18 
19 // State Machines
20 #include "state.h"
21 #include "transition.h"
22 #include "state_machine.h"
23 
24 #endif