Added copy operator
This commit is contained in:
@@ -41,6 +41,13 @@ struct FetchResult
|
|||||||
* Results list
|
* Results list
|
||||||
*/
|
*/
|
||||||
QList<T> data;
|
QList<T> data;
|
||||||
|
|
||||||
|
auto operator=(const FetchResult<T> &other) -> FetchResult<T>
|
||||||
|
{
|
||||||
|
total = other.total;
|
||||||
|
count = other.count;
|
||||||
|
data = other.data;
|
||||||
|
}
|
||||||
};
|
};
|
||||||
|
|
||||||
#endif // FETCHRESULT_H
|
#endif // FETCHRESULT_H
|
||||||
|
|||||||
Reference in New Issue
Block a user