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