15 lines
187 B
C++
15 lines
187 B
C++
#pragma once
|
|
|
|
#include "Parser.h"
|
|
|
|
class SunServerParser : public Parser
|
|
{
|
|
public:
|
|
SunServerParser(void);
|
|
~SunServerParser(void);
|
|
|
|
public:
|
|
virtual BOOL Load( TCHAR* pszFileName );
|
|
|
|
};
|