25 lines
427 B
C++
25 lines
427 B
C++
#pragma once
|
|
|
|
#include "ServerInfo.h"
|
|
|
|
class DBProxyInfo : public ServerInfo
|
|
{
|
|
public:
|
|
DBProxyInfo(void);
|
|
~DBProxyInfo(void);
|
|
|
|
private:
|
|
_ATTRIBUTES m_Attributes;
|
|
|
|
public:
|
|
//Load
|
|
void LoadScript( CString strFilePath );
|
|
void LoadAttributes( CString strFilePath );
|
|
|
|
//Save
|
|
void SaveScript( CString strFilePath );
|
|
void SaveAttributes( CString strFilePath );
|
|
|
|
_ATTRIBUTES* GetAttributes(){ return &m_Attributes; }
|
|
};
|