Let's make (git) history!

This commit is contained in:
2018-11-03 17:12:20 +01:00
커밋 3bfebfe8a8
212개의 변경된 파일11970개의 추가작업 그리고 0개의 파일을 삭제

파일 보기

@@ -0,0 +1,27 @@
#ifndef SQLITEQUERYOPTION_H
#define SQLITEQUERYOPTION_H
#include <string>
#include "queryoption.h"
class SqliteQueryOption
{
private:
QueryOption o;
std::string visibleColumnName;
std::string orderByColumnName;
bool prependWhere;
public:
SqliteQueryOption(const QueryOption &o);
SqliteQueryOption &setOrderByColumn(std::string name);
SqliteQueryOption &setVisibleColumnName(std::string name);
SqliteQueryOption &setPrependWhere(bool b);
std::string build();
};
#endif // SQLITEQUERYOPTION_H