diff options
author | danglassey <danglassey> | 2002-10-02 13:02:56 +0000 |
---|---|---|
committer | danglassey <danglassey> | 2002-10-02 13:02:56 +0000 |
commit | bf167779c3051180f10188b1a988def048a8d232 (patch) | |
tree | 2ad63a7d00c094e5cee55ec056f50e5b86576a14 /src/modules/comments | |
parent | 44e038bb23d56043a458c29676d8ec42ee552fe0 (diff) | |
download | sword-sf-cvs-bf167779c3051180f10188b1a988def048a8d232.tar.gz |
sync with crosswire 20021002-1300
Diffstat (limited to 'src/modules/comments')
-rw-r--r-- | src/modules/comments/hrefcom/hrefcom.cpp | 3 | ||||
-rw-r--r-- | src/modules/comments/rawcom/rawcom.cpp | 2 | ||||
-rw-r--r-- | src/modules/comments/rawfiles/rawfiles.cpp | 2 | ||||
-rw-r--r-- | src/modules/comments/swcom.cpp | 3 | ||||
-rw-r--r-- | src/modules/comments/zcom/zcom.cpp | 2 |
5 files changed, 12 insertions, 0 deletions
diff --git a/src/modules/comments/hrefcom/hrefcom.cpp b/src/modules/comments/hrefcom/hrefcom.cpp index 200e21f..7e0e029 100644 --- a/src/modules/comments/hrefcom/hrefcom.cpp +++ b/src/modules/comments/hrefcom/hrefcom.cpp @@ -20,6 +20,7 @@ #include <rawverse.h> #include <hrefcom.h> +SWORD_NAMESPACE_START /****************************************************************************** * HREFCom Constructor - Initializes data for instance of HREFCom @@ -95,3 +96,5 @@ char *HREFCom::getRawEntry() { return entrybuf; } + +SWORD_NAMESPACE_END diff --git a/src/modules/comments/rawcom/rawcom.cpp b/src/modules/comments/rawcom/rawcom.cpp index 8d789af..00e177d 100644 --- a/src/modules/comments/rawcom/rawcom.cpp +++ b/src/modules/comments/rawcom/rawcom.cpp @@ -19,6 +19,7 @@ #include <rawverse.h> #include <rawcom.h> +SWORD_NAMESPACE_START /****************************************************************************** * RawCom Constructor - Initializes data for instance of RawCom @@ -223,3 +224,4 @@ void RawCom::deleteEntry() { } +SWORD_NAMESPACE_END diff --git a/src/modules/comments/rawfiles/rawfiles.cpp b/src/modules/comments/rawfiles/rawfiles.cpp index c073a73..8e292f1 100644 --- a/src/modules/comments/rawfiles/rawfiles.cpp +++ b/src/modules/comments/rawfiles/rawfiles.cpp @@ -25,6 +25,7 @@ #define O_BINARY 0 // If it hasn't been defined than we probably #endif // don't need it. +SWORD_NAMESPACE_START /****************************************************************************** * RawFiles Constructor - Initializes data for instance of RawFiles @@ -272,3 +273,4 @@ char RawFiles::createModule (const char *path) { +SWORD_NAMESPACE_END diff --git a/src/modules/comments/swcom.cpp b/src/modules/comments/swcom.cpp index 21afd8e..3f2b940 100644 --- a/src/modules/comments/swcom.cpp +++ b/src/modules/comments/swcom.cpp @@ -5,6 +5,7 @@ #include <swcom.h> +SWORD_NAMESPACE_START /****************************************************************************** * SWCom Constructor - Initializes data for instance of SWCom @@ -66,3 +67,5 @@ long SWCom::Index(long iindex) { return Index(); } + +SWORD_NAMESPACE_END diff --git a/src/modules/comments/zcom/zcom.cpp b/src/modules/comments/zcom/zcom.cpp index a0b35c3..a820e2e 100644 --- a/src/modules/comments/zcom/zcom.cpp +++ b/src/modules/comments/zcom/zcom.cpp @@ -19,6 +19,7 @@ #include <zverse.h> #include <zcom.h> +SWORD_NAMESPACE_START /****************************************************************************** * zCom Constructor - Initializes data for instance of zCom @@ -253,3 +254,4 @@ void zCom::increment(int steps) { delete tmpkey; } +SWORD_NAMESPACE_END |