Let's make (git) history!

Este commit está contenido en:
2018-11-03 17:12:20 +01:00
commit 3bfebfe8a8
Se han modificado 212 ficheros con 11970 adiciones y 0 borrados

19
database/queryoption.h Archivo normal
Ver fichero

@@ -0,0 +1,19 @@
#ifndef QUERYOPTION_H
#define QUERYOPTION_H
enum SORT_ORDER
{
ASCENDING = 0,
DESCENDING
};
class QueryOption
{
public:
unsigned int offset = 0;
unsigned int limit = 0;
SORT_ORDER order = ASCENDING;
bool includeInvisible = true;
};
#endif // QUERYOPTION_H