home *** CD-ROM | disk | FTP | other *** search
/ DOS/V Power Report 1997 March / VPR9703A.ISO / VPR_DATA / DOGA / SOURCES / MEDIT.LZH / MECHA.H < prev    next >
C/C++ Source or Header  |  1995-09-30  |  423b  |  26 lines

  1. #ifndef _MECHA_
  2. #define _MECHA_
  3. #include "matrix.h"
  4. #include "suflib.h"
  5. #include "parts.h"
  6.  
  7. class Mechanic : public Object {
  8. public:
  9.     Parts *parts;
  10.     Mechanic(Parts *parts, char *fname);
  11.     ~Mechanic();
  12. };
  13.  
  14. class MechaFile {
  15. private:
  16.     char filename[128];
  17.     MechaFile *next;
  18. public:
  19.     Mechanic *mecha;
  20.  
  21.     static Mechanic *OpenMechanic(char *fname);
  22.     MechaFile(char *filename);
  23.     ~MechaFile();
  24. };
  25. #endif
  26.