Abstract IResult interface for Result

This is to allow faking the result for testing the CrudModel.
This commit is contained in:
eelke 2022-02-06 12:19:43 +01:00
parent 06504ecc1f
commit c346430b25
6 changed files with 103 additions and 67 deletions

View file

@ -3,7 +3,7 @@
using namespace Pgsql;
Row::Row(const Result &result, int row)
Row::Row(const IResult &result, int row)
: m_result(result)
, m_row(row)
{}