mirror of
https://github.com/Relintai/rcpp_framework.git
synced 2024-11-14 04:57:21 +01:00
13 lines
206 B
C++
13 lines
206 B
C++
#ifndef QUERY_RESULT_H
|
|
#define QUERY_RESULT_H
|
|
|
|
class QueryResult {
|
|
public:
|
|
virtual bool next_row();
|
|
virtual const char*get_cell(const int index);
|
|
|
|
QueryResult();
|
|
virtual ~QueryResult();
|
|
};
|
|
|
|
#endif |