summaryrefslogtreecommitdiff
path: root/server/src/queryresult.h
diff options
context:
space:
mode:
authordeva <deva>2008-05-26 13:56:30 +0000
committerdeva <deva>2008-05-26 13:56:30 +0000
commit192e0f80bd2da45f1c612411fded2e805ac205de (patch)
tree95407dd47edc6062a6250382ca345d320b7665be /server/src/queryresult.h
parentb0be417b31e2d2577c188a563d531889354b7617 (diff)
Completed the prefilling of the fields, from the db and pentominos, according to their timestamps.
Diffstat (limited to 'server/src/queryresult.h')
-rw-r--r--server/src/queryresult.h2
1 files changed, 2 insertions, 0 deletions
diff --git a/server/src/queryresult.h b/server/src/queryresult.h
index 32cfa20..617d957 100644
--- a/server/src/queryresult.h
+++ b/server/src/queryresult.h
@@ -27,11 +27,13 @@
#ifndef __PRACRO_QUERYRESULT_H__
#define __PRACRO_QUERYRESULT_H__
+#include <time.h>
#include <string>
#include <map>
class QueryResult {
public:
+ time_t timestamp;
std::map< std::string, std::string > values;
std::map< std::string, QueryResult > groups;
};