mirror of
https://github.com/spiffcode/hostile-takeover.git
synced 2026-04-25 12:29:58 -06:00
18 lines
322 B
C++
18 lines
322 B
C++
#ifndef __WINPACKFILE_H__
|
|
#define __WINPACKFILE_H__
|
|
|
|
#include "inc/basictypes.h"
|
|
|
|
namespace wi {
|
|
|
|
class WinPackFileReader : public PackFileReader
|
|
{
|
|
private:
|
|
virtual PdbReader *OpenPdb(char *pszDir, char *pszFn);
|
|
virtual bool DeletePdb(char *pszDir, char *pszFn);
|
|
};
|
|
|
|
} // namespace wi
|
|
|
|
#endif // __WINPACKFILE_H__
|