mirror of
https://github.com/Relintai/rcpp_framework.git
synced 2024-11-14 04:57:21 +01:00
16 lines
208 B
C++
16 lines
208 B
C++
|
#include "query_result.h"
|
||
|
|
||
|
bool QueryResult::next_row() {
|
||
|
return false;
|
||
|
}
|
||
|
|
||
|
const char *QueryResult::get_cell(const int index) {
|
||
|
return "";
|
||
|
}
|
||
|
|
||
|
QueryResult::QueryResult() {
|
||
|
}
|
||
|
|
||
|
QueryResult::~QueryResult() {
|
||
|
}
|