diff options
author | deva <deva> | 2008-05-26 13:56:30 +0000 |
---|---|---|
committer | deva <deva> | 2008-05-26 13:56:30 +0000 |
commit | 192e0f80bd2da45f1c612411fded2e805ac205de (patch) | |
tree | 95407dd47edc6062a6250382ca345d320b7665be /server/src/queryparser.h | |
parent | b0be417b31e2d2577c188a563d531889354b7617 (diff) |
Completed the prefilling of the fields, from the db and pentominos, according to their timestamps.
Diffstat (limited to 'server/src/queryparser.h')
-rw-r--r-- | server/src/queryparser.h | 4 |
1 files changed, 3 insertions, 1 deletions
diff --git a/server/src/queryparser.h b/server/src/queryparser.h index 4367bba..ea952e7 100644 --- a/server/src/queryparser.h +++ b/server/src/queryparser.h @@ -27,6 +27,8 @@ #ifndef __PRACRO_QUERYPARSER_H__ #define __PRACRO_QUERYPARSER_H__ +#include <time.h> + #include "queryresult.h" #include "saxparser.h" @@ -52,7 +54,7 @@ private: // For read int p; std::string document; - + time_t timestamp; std::vector< QueryResult * > stack; }; |