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.
|
|
//
// MODULE: APGTSTSCREAD.H
//
// PURPOSE: TSC file reading classes
//
// COMPANY: Saltmine Creative, Inc. (206)-284-7511 [email protected]
//
// AUTHOR: Randy Biley
//
// ORIGINAL DATE: 01-19-1999
//
// NOTES:
// Typical TSC file content might be:
// TSCACH03
// MAPFROM 1:1
// MAPTO 3,5,13,9,16
// :
// :
// :
// MAPFROM 1:1,3:0
// MAPTO 5,13,9,16
// END
//
// Version Date By Comments
//--------------------------------------------------------------------
// V3.0 01-19-1999 RAB
//
#ifndef __APGTSTSCREAD_H_
#define __APGTSTSCREAD_H_
#include "fileread.h"
#include "apgtscac.h"
class CAPGTSTSCReader : public CTextFileReader { private: CCache *m_pCache;
public: CAPGTSTSCReader( CPhysicalFileReader * pPhysicalFileReader, CCache *pCache ); ~CAPGTSTSCReader();
protected: virtual void Parse(); } ;
#endif
|