#ifndef MASTER_H #define MASTER_H #ifndef UNIV_H #include "univ.h" #endif void NewWd(); class Master : public PadRcv { friend HostMaster; friend KernMaster; friend RtRawMaster; friend RtNrtxMaster; Process *child; virtual char *kbd(char*s); virtual char *help(); virtual Process *domakeproc(char*, char*, char*) { return 0; } PUBLIC(Master, U_MASTER) Core *core; Pad *pad; void insert(Process*); Process *search(char*); Process *makeproc(char*, char* =0, char* =0); Master(); }; #endif