Disk ARchive  2.6.13
Full featured and portable backup and archiving tool
database_aux.hpp
Go to the documentation of this file.
1 /*********************************************************************/
2 // dar - disk archive - a backup/restoration program
3 // Copyright (C) 2002-2020 Denis Corbin
4 //
5 // This program is free software; you can redistribute it and/or
6 // modify it under the terms of the GNU General Public License
7 // as published by the Free Software Foundation; either version 2
8 // of the License, or (at your option) any later version.
9 //
10 // This program is distributed in the hope that it will be useful,
11 // but WITHOUT ANY WARRANTY; without even the implied warranty of
12 // MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
13 // GNU General Public License for more details.
14 //
15 // You should have received a copy of the GNU General Public License
16 // along with this program; if not, write to the Free Software
17 // Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA.
18 //
19 // to contact the author : http://dar.linux.free.fr/email.html
20 /*********************************************************************/
21 
25 
26 
27 #ifndef DATABASE_AUX_HPP
28 #define DATABASE_AUX_HPP
29 
30 #include "../my_config.h"
31 
32 namespace libdar
33 {
34 
37 
39 
40  enum class db_lookup
41  {
42  found_present,
43  found_removed,
44  not_found,
46  };
47 
49 
54  enum class db_etat
55  {
56  et_saved,
57  et_patch,
58  et_patch_unusable,
59  et_inode,
60  et_present,
61  et_removed,
62  et_absent
63  };
64 
66 
67 } // end of namespace
68 
69 #endif
libdar::db_lookup::found_present
@ found_present
file data/EA has been found completely usable
libdar::db_etat::et_saved
@ et_saved
data/EA present in the archive
libdar::db_etat
db_etat
the status for a founded entry
Definition: database_aux.hpp:55
libdar::db_lookup
db_lookup
the available status of a lookup
Definition: database_aux.hpp:41
libdar
libdar namespace encapsulate all libdar symbols
Definition: archive.hpp:47