Source code of Windows XP (NT5)
You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

49 lines
839 B

  1. //
  2. // MODULE: APGTSTSCREAD.H
  3. //
  4. // PURPOSE: TSC file reading classes
  5. //
  6. // COMPANY: Saltmine Creative, Inc. (206)-284-7511 [email protected]
  7. //
  8. // AUTHOR: Randy Biley
  9. //
  10. // ORIGINAL DATE: 01-19-1999
  11. //
  12. // NOTES:
  13. // Typical TSC file content might be:
  14. // TSCACH03
  15. // MAPFROM 1:1
  16. // MAPTO 3,5,13,9,16
  17. // :
  18. // :
  19. // :
  20. // MAPFROM 1:1,3:0
  21. // MAPTO 5,13,9,16
  22. // END
  23. //
  24. // Version Date By Comments
  25. //--------------------------------------------------------------------
  26. // V3.0 01-19-1999 RAB
  27. //
  28. #ifndef __APGTSTSCREAD_H_
  29. #define __APGTSTSCREAD_H_
  30. #include "fileread.h"
  31. #include "apgtscac.h"
  32. class CAPGTSTSCReader : public CTextFileReader
  33. {
  34. private:
  35. CCache *m_pCache;
  36. public:
  37. CAPGTSTSCReader( CPhysicalFileReader * pPhysicalFileReader, CCache *pCache );
  38. ~CAPGTSTSCReader();
  39. protected:
  40. virtual void Parse();
  41. } ;
  42. #endif