Disk ARchive  2.5.13
Full featured and portable backup and archiving tool
cat_eod.hpp
Go to the documentation of this file.
1 /*********************************************************************/
2 // dar - disk archive - a backup/restoration program
3 // Copyright (C) 2002-2052 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., 59 Temple Place - Suite 330, Boston, MA 02111-1307, USA.
18 //
19 // to contact the author : http://dar.linux.free.fr/email.html
20 /*********************************************************************/
21 
25 
26 #ifndef CAT_EOD_HPP
27 #define CAT_EOD_HPP
28 
29 #include "../my_config.h"
30 
31 extern "C"
32 {
33 } // end extern "C"
34 
35 #include "cat_entree.hpp"
36 
37 namespace libdar
38 {
39 
42 
43 
45  class cat_eod : public cat_entree
46  {
47  public :
48  cat_eod() {};
49  cat_eod(const smart_pointer<pile_descriptor> & pdesc, bool small): cat_entree(pdesc, small) {};
50  // dump defined by cat_entree
51  virtual bool operator == (const cat_entree & ref) const { return true; };
52  unsigned char signature() const { return 'z'; };
53  cat_entree *clone() const { return new (get_pool()) cat_eod(); };
54 
55  };
56 
58 
59 } // end of namespace
60 
61 #endif
memory_pool * get_pool() const
Definition: on_pool.hpp:144
the End of Directory entry class
Definition: cat_eod.hpp:45
cat_entree * clone() const
a way to copy the exact type of an object even if pointed to by a parent class pointer ...
Definition: cat_eod.hpp:53
virtual bool operator==(const cat_entree &ref) const
returns true if the two object have the same content
Definition: cat_eod.hpp:51
unsigned char signature() const
inherited class signature
Definition: cat_eod.hpp:52
base class for all object contained in a catalogue
the root class from all other inherite for any entry in the catalogue
Definition: cat_entree.hpp:85
cat_entree()
setup an object when read from filesystem
Definition: cat_entree.hpp:123
libdar namespace encapsulate all libdar symbols
Definition: archive.hpp:47