20 lines
284 B
C++
20 lines
284 B
C++
#pragma once
|
|
|
|
#include "Parser.h"
|
|
#include "AgentServerInfo.h"
|
|
|
|
|
|
class AgentServerParser : public Parser
|
|
{
|
|
public:
|
|
AgentServerParser(void);
|
|
virtual ~AgentServerParser(void);
|
|
|
|
public:
|
|
virtual BOOL Load( TCHAR* pszFileName );
|
|
|
|
//attiribute
|
|
private:
|
|
AGENT_ATTRIBUTE m_Attribute;
|
|
};
|