'tickets' can use 'threads' now

git-svn-id: svn://ttmath.org/publicrep/winix/trunk@706 e52654a7-88a9-db11-a3e9-0013d4bc506e
This commit is contained in:
2011-01-20 18:37:51 +00:00
parent 3fad25b8c8
commit ab84a5169e
61 changed files with 1928 additions and 980 deletions

View File

@@ -11,6 +11,7 @@
#define headerfile_winix_plugins_thread_thread
#include <string>
#include <string.h>
namespace Thread
@@ -24,36 +25,32 @@ class Thread
public:
long file_id;
//long parent_id;
long dir_id;
long replies;
bool closed;
// how many items there are inside
long items;
// last item in the directory (this variable is mainly for reading)
// at the moment only used: id, date_modification, user_id
Item last_item;
// used when sorting
unsigned long sort;
// the last file in a thread
long last_item_id;
tm last_item_date_modification;
long last_item_user_id;
std::wstring last_item_guest_name;
void Clear()
{
id = parent_id = dir_id = -1;
last_item.Clear();
closed = false;
items = 0;
sort = 0;
file_id = -1;
closed = false;
replies = 0;
last_item_id = -1;
last_item_user_id = -1;
memset(&last_item_date_modification, 0, sizeof(tm));
last_item_guest_name.clear();
}
Thread()
{
Clear();
}
};