added winix functions: ln winix function 'default' can be used without redirecting now added new tickets types: TypeProgress, TypeString, TypeMultistring, TypeImages, TypeFiles now tickets are combined with files added winix functions: showtickets fixed mountpoints: when the default root mount was created its parameter table was empty and it caused accessing to a non-existing objects fixed logger: modifiers (log1, log2, log3) were incorrectly treated added modifier: log4 (debug info) now we are moving threads to a new plugin 'thread' created directory: plugins/thread (not finished yet) git-svn-id: svn://ttmath.org/publicrep/winix/trunk@704 e52654a7-88a9-db11-a3e9-0013d4bc506e
49 lines
805 B
C++
Executable File
49 lines
805 B
C++
Executable File
/*
|
|
* This file is a part of Winix
|
|
* and is not publicly distributed
|
|
*
|
|
* Copyright (c) 2010, Tomasz Sowa
|
|
* All rights reserved.
|
|
*
|
|
*/
|
|
|
|
#ifndef headerfile_winix_plugins_ticket_tdb
|
|
#define headerfile_winix_plugins_ticket_tdb
|
|
|
|
|
|
#include <vector>
|
|
#include "ticket.h"
|
|
#include "db/dbbase.h"
|
|
#include "core/error.h"
|
|
|
|
|
|
namespace Ticket
|
|
{
|
|
|
|
|
|
class TDb : public DbBase
|
|
{
|
|
public:
|
|
|
|
bool IsTicket(long file_id);
|
|
Error GetTicket(long file_id, Ticket & ticket);
|
|
Error GetTickets(const std::vector<long> & file_id_tab, std::vector<Ticket> & ticket_tab);
|
|
Error AddTicket(const Ticket & ticket);
|
|
Error RemoveAddTicket(const Ticket & ticket); // first removing and then adding a ticket
|
|
Error RemoveTicket(long file_id);
|
|
|
|
|
|
private:
|
|
|
|
DbTextStream query;
|
|
std::wstring file_list;
|
|
|
|
};
|
|
|
|
|
|
} // namespace
|
|
|
|
|
|
#endif
|
|
|