23 lines
255 B
C++
23 lines
255 B
C++
|
#include "datafetcher.h"
|
|||
|
#include "globalparameters.h"
|
|||
|
|
|||
|
DataFetcher::DataFetcher()
|
|||
|
{
|
|||
|
|
|||
|
}
|
|||
|
|
|||
|
DataFetcher::~DataFetcher()
|
|||
|
{
|
|||
|
|
|||
|
}
|
|||
|
|
|||
|
bool DataFetcher::Fetch(TableData& tbl_data)
|
|||
|
{
|
|||
|
return true;
|
|||
|
}
|
|||
|
|
|||
|
int DataFetcher::VerifyStatus()
|
|||
|
{
|
|||
|
return STATUS_NORMAL;
|
|||
|
}
|