Represents the list of currently removed files. More...
#include <creaImageIOSynchron.h>
Public Member Functions | |
RemoveList (CppSQLite3Query &res) | |
Ctor. | |
Public Attributes | |
std::string | key |
Key to be added into the database. | |
std::string | path |
Path of the remove file. | |
std::string | remove |
Defines if the file was removed or not. | |
std::string | time |
Time of the last change of the file. |
Represents the list of currently removed files.
Definition at line 38 of file creaImageIOSynchron.h.
creaImageIO::RemoveList::RemoveList | ( | CppSQLite3Query & | res | ) | [inline] |
Ctor.
Definition at line 50 of file creaImageIOSynchron.h.
: key(res.getStringField(1)), path(res.getStringField(2)), remove(res.getStringField(3)), time(res.getStringField(4)) {}
std::string creaImageIO::RemoveList::key |
Key to be added into the database.
Definition at line 42 of file creaImageIOSynchron.h.
std::string creaImageIO::RemoveList::path |
Path of the remove file.
Definition at line 44 of file creaImageIOSynchron.h.
std::string creaImageIO::RemoveList::remove |
Defines if the file was removed or not.
Definition at line 46 of file creaImageIOSynchron.h.
Referenced by creaImageIO::Synchronizer::GetIgnoreList().
std::string creaImageIO::RemoveList::time |
Time of the last change of the file.
Definition at line 48 of file creaImageIOSynchron.h.