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