aboutsummaryrefslogtreecommitdiff
path: root/src/archival.h
diff options
context:
space:
mode:
authorMike Buland <eichlan@xagasoft.com>2007-04-10 13:53:18 +0000
committerMike Buland <eichlan@xagasoft.com>2007-04-10 13:53:18 +0000
commit5a0d7856dc265580cebaa833e0367d03ef21bbc3 (patch)
treeebd127d25b3658d3f0417cdb1706e0049a9a28de /src/archival.h
parent997f13ec4791adcda91cd4db41cdb5962b73d47d (diff)
downloadlibbu++-5a0d7856dc265580cebaa833e0367d03ef21bbc3.tar.gz
libbu++-5a0d7856dc265580cebaa833e0367d03ef21bbc3.tar.bz2
libbu++-5a0d7856dc265580cebaa833e0367d03ef21bbc3.tar.xz
libbu++-5a0d7856dc265580cebaa833e0367d03ef21bbc3.zip
Woo, changed the name of Achable to Archival, I dig that, and added the ground-
work for the SSocket, that should be cool.
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