#ifndef _disk_h #define _disk_h #include "tvector.h" class Disk { public: Disk(int id); compare; int freeSpace(); private: static const int capacity = 1000000; int mySize; int myId; tvectormyFiles; }; #endif // _disk_h