13 lines
212 B
C
13 lines
212 B
C
|
|
#pragma once
|
||
|
|
|
||
|
|
#include "SQLConnection.h"
|
||
|
|
|
||
|
|
class CDNSQLConnection: public CSQLConnection
|
||
|
|
{
|
||
|
|
public:
|
||
|
|
CDNSQLConnection(void);
|
||
|
|
~CDNSQLConnection(void);
|
||
|
|
|
||
|
|
int QueryLog(TLog *pLog);
|
||
|
|
int QueryLog( TLogFile* pLog );
|
||
|
|
};
|