Add empty system class
This commit is contained in:
1
src/kernel/system/System.cpp
Normal file
1
src/kernel/system/System.cpp
Normal file
@ -0,0 +1 @@
|
|||||||
|
#include "System.h"
|
||||||
20
src/kernel/system/System.h
Normal file
20
src/kernel/system/System.h
Normal 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
|
||||||
Reference in New Issue
Block a user