aboutsummaryrefslogtreecommitdiff
path: root/src/archival.h
diff options
context:
space:
mode:
Diffstat (limited to '')
-rw-r--r--src/archival.h (renamed from src/archable.h)13
1 files changed, 8 insertions, 5 deletions
diff --git a/src/archable.h b/src/archival.h
index ed05a78..e2c803c 100644
--- a/src/archable.h
+++ b/src/archival.h
@@ -1,5 +1,5 @@
1#ifndef ARCHABLE_H 1#ifndef ARCHIVAL_H
2#define ARCHABLE_H 2#define ARCHIVAL_H
3 3
4namespace Bu 4namespace Bu
5{ 5{
@@ -7,19 +7,22 @@ namespace Bu
7 * The base class for any class you want to archive. Simply include this as 7 * The base class for any class you want to archive. Simply include this as
8 * a base class, implement the purely virtual archive function and you've 8 * a base class, implement the purely virtual archive function and you've
9 * got an easily archiveable class. 9 * got an easily archiveable class.
10 *
11 * Archival: "of or pertaining to archives or valuable records; contained
12 * in or comprising such archives or records."
10 */ 13 */
11 class Archable 14 class Archival
12 { 15 {
13 public: 16 public:
14 /** 17 /**
15 * Does nothing, here for completeness. 18 * Does nothing, here for completeness.
16 */ 19 */
17 Archable(); 20 Archival();
18 21
19 /** 22 /**
20 * Here to ensure the deconstructor is virtual. 23 * Here to ensure the deconstructor is virtual.
21 */ 24 */
22 virtual ~Archable(); 25 virtual ~Archival();
23 26
24 /** 27 /**
25 * This is the main workhorse of the archive system, just override and 28 * This is the main workhorse of the archive system, just override and