modified mysql results/row to be ready for range based for

This commit is contained in:
Arthur Ice
2015-01-08 20:34:38 -08:00
parent 4808dcadcf
commit f6166bcb94
3 changed files with 8 additions and 2 deletions
+6
View File
@@ -30,6 +30,12 @@ MySQLRequestRow& MySQLRequestRow::operator=(MySQLRequestRow& moveItem)
return *this;
}
MySQLRequestRow MySQLRequestRow::operator*()
{
return *this;
}
MySQLRequestRow::MySQLRequestRow(MYSQL_RES *result)
: m_Result(result)
{