@Code.h 557 B

123456789101112131415
  1. /******************************************************************************/
  2. /******************************************************************************/
  3. class Code // Source Code File
  4. {
  5. Str current, base;
  6. void del();
  7. bool save(File &f)C;
  8. bool load(File &f);
  9. bool load(C Str &name);
  10. };
  11. /******************************************************************************/
  12. /******************************************************************************/
  13. /******************************************************************************/