working prototype

This commit is contained in:
anon
2024-08-23 21:04:44 +02:00
commit 14083ecab4
11 changed files with 342 additions and 0 deletions

15
source/node_t.h Normal file
View File

@ -0,0 +1,15 @@
#ifndef NODE_TYPE_H
#define NODE_TYPE_H
/* Yes, we do have a class hierarchy too, however thats opaque to 'main.cpp'.
* 'main.cpp' only uses these to apply styling, it does not care about anything else
* and thats how its should be.
*/
typedef enum {
DEFAULT,
INTERFACE,
SYSTEM,
} node_t;
#endif