1

Add empty system class

This commit is contained in:
2022-12-07 21:36:33 +01:00
parent 61d15f1be5
commit 1455757e24
2 changed files with 21 additions and 0 deletions

View File

@ -0,0 +1 @@
#include "System.h"

View File

@ -0,0 +1,20 @@
#ifndef CHURLOS_SYSTEM_H
#define CHURLOS_SYSTEM_H
#include "kernel/service/Service.h"
#include "lib/stream/CGA_Stream.h"
#include "lib/container/Vector.h"
namespace Util {
class System {
public:
static CGA_Stream out;
private:
static Container::Vector<Kernel::Service> systemServices;
};
}
#endif //CHURLOS_SYSTEM_H