#ifndef PROCESS_H #define PROCESS_H #include namespace kernel { class Process { public: Process(); size_t priority; void* stack; }; }; #endif