aboutsummaryrefslogtreecommitdiff
path: root/query.h
diff options
context:
space:
mode:
authortomsmeding <hallo@tomsmeding.nl>2015-05-23 20:57:13 +0200
committertomsmeding <hallo@tomsmeding.nl>2015-05-23 20:57:13 +0200
commitbd0fac9d424ccec65942c81c11b7aefe25c8a829 (patch)
tree8b05c639052e35b5120f6009795312c99e55f98b /query.h
parent7759d2262508396a09bb386b25e9e0171a577b6b (diff)
DropQuery
Diffstat (limited to 'query.h')
-rw-r--r--query.h5
1 files changed, 5 insertions, 0 deletions
diff --git a/query.h b/query.h
index 467aa7f..b265496 100644
--- a/query.h
+++ b/query.h
@@ -77,3 +77,8 @@ struct DeleteQuery : public Query{
DeleteQuery(void);
QueryResult execute(map<string,Table> &tables);
};
+
+struct DropQuery : public Query{
+ DropQuery(void);
+ QueryResult execute(map<string,Table> &tables);
+};