summaryrefslogtreecommitdiff
path: root/src/utils
diff options
context:
space:
mode:
Diffstat (limited to 'src/utils')
-rw-r--r--src/utils/base64.cpp1
-rw-r--r--src/utils/base64.h1
-rw-r--r--src/utils/cipher.cpp2
-rw-r--r--src/utils/cipher.h3
-rw-r--r--src/utils/encryption.cpp2
-rw-r--r--src/utils/encryption.h2
-rw-r--r--src/utils/functors.h3
-rw-r--r--src/utils/logger.cpp2
-rw-r--r--src/utils/logger.h3
-rw-r--r--src/utils/mathutils.cpp2
-rw-r--r--src/utils/mathutils.h2
-rw-r--r--src/utils/processorutils.cpp2
-rw-r--r--src/utils/processorutils.hpp2
-rw-r--r--src/utils/sha256.cpp2
-rw-r--r--src/utils/sha256.h2
-rw-r--r--src/utils/singleton.h3
-rw-r--r--src/utils/string.cpp1
-rw-r--r--src/utils/string.hpp1
-rw-r--r--src/utils/stringfilter.cpp2
-rw-r--r--src/utils/stringfilter.h3
-rw-r--r--src/utils/timer.h2
-rw-r--r--src/utils/tokencollector.cpp2
-rw-r--r--src/utils/tokencollector.hpp2
-rw-r--r--src/utils/tokendispenser.cpp2
-rw-r--r--src/utils/tokendispenser.hpp2
-rw-r--r--src/utils/trim.hpp2
-rw-r--r--src/utils/xml.cpp2
-rw-r--r--src/utils/xml.hpp2
-rw-r--r--src/utils/zlib.cpp2
-rw-r--r--src/utils/zlib.hpp2
30 files changed, 0 insertions, 61 deletions
diff --git a/src/utils/base64.cpp b/src/utils/base64.cpp
index 973376e4..c0a87533 100644
--- a/src/utils/base64.cpp
+++ b/src/utils/base64.cpp
@@ -15,7 +15,6 @@
| Author: Jim Winstead (jimw@php.net) |
+----------------------------------------------------------------------+
*/
-/* $Id$ */
#include <cstring>
#include <cstdlib>
diff --git a/src/utils/base64.h b/src/utils/base64.h
index 5b275c45..4d2950cc 100644
--- a/src/utils/base64.h
+++ b/src/utils/base64.h
@@ -26,7 +26,6 @@
| Author: Jim Winstead (jimw@php.net) |
+----------------------------------------------------------------------+
*/
-/* $Id$ */
#ifndef _TMW_BASE64_H
#define _TMW_BASE64_H
diff --git a/src/utils/cipher.cpp b/src/utils/cipher.cpp
index 083f6924..9b8001a2 100644
--- a/src/utils/cipher.cpp
+++ b/src/utils/cipher.cpp
@@ -16,8 +16,6 @@
* You should have received a copy of the GNU General Public License along
* with The Mana World; if not, write to the Free Software Foundation, Inc.,
* 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA
- *
- * $Id$
*/
#include "cipher.h"
diff --git a/src/utils/cipher.h b/src/utils/cipher.h
index 3dfb5ef2..d2ba897b 100644
--- a/src/utils/cipher.h
+++ b/src/utils/cipher.h
@@ -16,11 +16,8 @@
* You should have received a copy of the GNU General Public License along
* with The Mana World; if not, write to the Free Software Foundation, Inc.,
* 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA
- *
- * $Id$
*/
-
#ifndef _TMWSERV_CIPHER_H_
#define _TMWSERV_CIPHER_H_
diff --git a/src/utils/encryption.cpp b/src/utils/encryption.cpp
index 296a8631..38ee01a3 100644
--- a/src/utils/encryption.cpp
+++ b/src/utils/encryption.cpp
@@ -17,8 +17,6 @@
* You should have received a copy of the GNU General Public License
* along with The Mana World; if not, write to the Free Software
* Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA
- *
- * $Id$
*/
#include "encryption.h"
diff --git a/src/utils/encryption.h b/src/utils/encryption.h
index fd67c5e1..117f1680 100644
--- a/src/utils/encryption.h
+++ b/src/utils/encryption.h
@@ -17,8 +17,6 @@
* You should have received a copy of the GNU General Public License
* along with The Mana World; if not, write to the Free Software
* Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA
- *
- * $Id$
*/
#ifndef _TMW_UTILS_ENCRYPTION_H
diff --git a/src/utils/functors.h b/src/utils/functors.h
index af061609..4c7bee55 100644
--- a/src/utils/functors.h
+++ b/src/utils/functors.h
@@ -16,11 +16,8 @@
* You should have received a copy of the GNU General Public License along
* with The Mana World; if not, write to the Free Software Foundation, Inc.,
* 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA
- *
- * $Id$
*/
-
#ifndef _TMWSERV_FUNCTORS_H_
#define _TMWSERV_FUNCTORS_H_
diff --git a/src/utils/logger.cpp b/src/utils/logger.cpp
index f7d26059..eab8c39d 100644
--- a/src/utils/logger.cpp
+++ b/src/utils/logger.cpp
@@ -16,8 +16,6 @@
* You should have received a copy of the GNU General Public License along
* with The Mana World; if not, write to the Free Software Foundation, Inc.,
* 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA
- *
- * $Id$
*/
#include "logger.h"
diff --git a/src/utils/logger.h b/src/utils/logger.h
index 29147b46..026696a6 100644
--- a/src/utils/logger.h
+++ b/src/utils/logger.h
@@ -16,11 +16,8 @@
* You should have received a copy of the GNU General Public License along
* with The Mana World; if not, write to the Free Software Foundation, Inc.,
* 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA
- *
- * $Id$
*/
-
#ifndef _TMWSERV_LOGGER_H_
#define _TMWSERV_LOGGER_H_
diff --git a/src/utils/mathutils.cpp b/src/utils/mathutils.cpp
index 6ffaffc2..55668ddf 100644
--- a/src/utils/mathutils.cpp
+++ b/src/utils/mathutils.cpp
@@ -16,8 +16,6 @@
* You should have received a copy of the GNU General Public License along
* with The Mana World; if not, write to the Free Software Foundation, Inc.,
* 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA
- *
- * $Id$
*/
#include "mathutils.h"
diff --git a/src/utils/mathutils.h b/src/utils/mathutils.h
index 6d05c0a0..04639d0f 100644
--- a/src/utils/mathutils.h
+++ b/src/utils/mathutils.h
@@ -16,8 +16,6 @@
* You should have received a copy of the GNU General Public License along
* with The Mana World; if not, write to the Free Software Foundation, Inc.,
* 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA
- *
- * $Id$
*/
#ifndef _TMWSERV_MATHUTILS_H_
diff --git a/src/utils/processorutils.cpp b/src/utils/processorutils.cpp
index 8cbab3e7..0c2cf5bd 100644
--- a/src/utils/processorutils.cpp
+++ b/src/utils/processorutils.cpp
@@ -16,8 +16,6 @@
* You should have received a copy of the GNU General Public License along
* with The Mana World; if not, write to the Free Software Foundation, Inc.,
* 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA
- *
- * $Id$
*/
#include "utils/processorutils.hpp"
diff --git a/src/utils/processorutils.hpp b/src/utils/processorutils.hpp
index f426781e..81d83fcd 100644
--- a/src/utils/processorutils.hpp
+++ b/src/utils/processorutils.hpp
@@ -16,8 +16,6 @@
* You should have received a copy of the GNU General Public License along
* with The Mana World; if not, write to the Free Software Foundation, Inc.,
* 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA
- *
- * $Id$
*/
#ifndef _TMWSERV_PROCESSORUTILS_HPP
diff --git a/src/utils/sha256.cpp b/src/utils/sha256.cpp
index 547425cc..d2aebae8 100644
--- a/src/utils/sha256.cpp
+++ b/src/utils/sha256.cpp
@@ -17,8 +17,6 @@
* You should have received a copy of the GNU General Public License
* along with The Mana World; if not, write to the Free Software
* Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA
- *
- * $Id$
*/
/* +------------------------------------+
diff --git a/src/utils/sha256.h b/src/utils/sha256.h
index bd9ae282..f805c6cf 100644
--- a/src/utils/sha256.h
+++ b/src/utils/sha256.h
@@ -17,8 +17,6 @@
* You should have received a copy of the GNU General Public License
* along with The Mana World; if not, write to the Free Software
* Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA
- *
- * $Id$
*/
#ifndef _TMW_UTILS_SHA256_H_
diff --git a/src/utils/singleton.h b/src/utils/singleton.h
index 92f6bebe..1a879235 100644
--- a/src/utils/singleton.h
+++ b/src/utils/singleton.h
@@ -16,11 +16,8 @@
* You should have received a copy of the GNU General Public License along
* with The Mana World; if not, write to the Free Software Foundation, Inc.,
* 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA
- *
- * $Id$
*/
-
#ifndef _TMWSERV_SINGLETON_H_
#define _TMWSERV_SINGLETON_H_
diff --git a/src/utils/string.cpp b/src/utils/string.cpp
index 79ca4dc6..1e5cb5bc 100644
--- a/src/utils/string.cpp
+++ b/src/utils/string.cpp
@@ -16,7 +16,6 @@
* You should have received a copy of the GNU General Public License along
* with The Mana World; if not, write to the Free Software Foundation, Inc.,
* 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA
- *
*/
#include "utils/string.hpp"
diff --git a/src/utils/string.hpp b/src/utils/string.hpp
index 678671d2..62c0f2f0 100644
--- a/src/utils/string.hpp
+++ b/src/utils/string.hpp
@@ -16,7 +16,6 @@
* You should have received a copy of the GNU General Public License along
* with The Mana World; if not, write to the Free Software Foundation, Inc.,
* 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA
- *
*/
#ifndef UTILS_STRING_HPP
diff --git a/src/utils/stringfilter.cpp b/src/utils/stringfilter.cpp
index e45ec369..b1df68f4 100644
--- a/src/utils/stringfilter.cpp
+++ b/src/utils/stringfilter.cpp
@@ -16,8 +16,6 @@
* You should have received a copy of the GNU General Public License along
* with The Mana World; if not, write to the Free Software Foundation, Inc.,
* 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA
- *
- * $Id$
*/
#include <algorithm>
diff --git a/src/utils/stringfilter.h b/src/utils/stringfilter.h
index ff29db21..e62ecf95 100644
--- a/src/utils/stringfilter.h
+++ b/src/utils/stringfilter.h
@@ -16,11 +16,8 @@
* You should have received a copy of the GNU General Public License along
* with The Mana World; if not, write to the Free Software Foundation, Inc.,
* 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA
- *
- * $Id$
*/
-
#ifndef _TMWSERV_SLANGSFILTER_H_
#define _TMWSERV_SLANGSFILTER_H_
diff --git a/src/utils/timer.h b/src/utils/timer.h
index fdf021f6..4843c702 100644
--- a/src/utils/timer.h
+++ b/src/utils/timer.h
@@ -16,8 +16,6 @@
* You should have received a copy of the GNU General Public License along
* with The Mana World; if not, write to the Free Software Foundation, Inc.,
* 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA
- *
- * $Id$
*/
#ifndef _TMWSERV_TIMER_H_
diff --git a/src/utils/tokencollector.cpp b/src/utils/tokencollector.cpp
index 304caf8e..0719b444 100644
--- a/src/utils/tokencollector.cpp
+++ b/src/utils/tokencollector.cpp
@@ -16,8 +16,6 @@
* You should have received a copy of the GNU General Public License along
* with The Mana World; if not, write to the Free Software Foundation, Inc.,
* 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA
- *
- * $Id$
*/
#include "utils/tokencollector.hpp"
diff --git a/src/utils/tokencollector.hpp b/src/utils/tokencollector.hpp
index a37dfaae..c2403884 100644
--- a/src/utils/tokencollector.hpp
+++ b/src/utils/tokencollector.hpp
@@ -16,8 +16,6 @@
* You should have received a copy of the GNU General Public License along
* with The Mana World; if not, write to the Free Software Foundation, Inc.,
* 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA
- *
- * $Id$
*/
#ifndef _TMW_TOKENCOLLECTOR_HPP
diff --git a/src/utils/tokendispenser.cpp b/src/utils/tokendispenser.cpp
index 50148144..b2052ad0 100644
--- a/src/utils/tokendispenser.cpp
+++ b/src/utils/tokendispenser.cpp
@@ -16,8 +16,6 @@
* You should have received a copy of the GNU General Public License along
* with The Mana World; if not, write to the Free Software Foundation, Inc.,
* 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA
- *
- * $Id$
*/
#include "utils/tokendispenser.hpp"
diff --git a/src/utils/tokendispenser.hpp b/src/utils/tokendispenser.hpp
index a6f0b3ee..52240df4 100644
--- a/src/utils/tokendispenser.hpp
+++ b/src/utils/tokendispenser.hpp
@@ -16,8 +16,6 @@
* You should have received a copy of the GNU General Public License along
* with The Mana World; if not, write to the Free Software Foundation, Inc.,
* 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA
- *
- * $Id$
*/
#ifndef _TMWSERV_TOKENDISPENSER_HPP
diff --git a/src/utils/trim.hpp b/src/utils/trim.hpp
index 4312cfa7..df44fb0a 100644
--- a/src/utils/trim.hpp
+++ b/src/utils/trim.hpp
@@ -17,8 +17,6 @@
* You should have received a copy of the GNU General Public License
* along with The Mana World; if not, write to the Free Software
* Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA
- *
- * $Id$
*/
#ifndef _TMWSERV_UTILS_TRIM_
diff --git a/src/utils/xml.cpp b/src/utils/xml.cpp
index f5a3ef5a..9527658a 100644
--- a/src/utils/xml.cpp
+++ b/src/utils/xml.cpp
@@ -17,8 +17,6 @@
* You should have received a copy of the GNU General Public License
* along with The Mana World; if not, write to the Free Software
* Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA
- *
- * $Id$
*/
#include <cstdlib>
diff --git a/src/utils/xml.hpp b/src/utils/xml.hpp
index 6383de9c..652d1e8c 100644
--- a/src/utils/xml.hpp
+++ b/src/utils/xml.hpp
@@ -17,8 +17,6 @@
* You should have received a copy of the GNU General Public License
* along with The Mana World; if not, write to the Free Software
* Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA
- *
- * $Id$
*/
#ifndef _TMWSERV_XML_H_
diff --git a/src/utils/zlib.cpp b/src/utils/zlib.cpp
index 2bd2f237..00cc4c0e 100644
--- a/src/utils/zlib.cpp
+++ b/src/utils/zlib.cpp
@@ -17,8 +17,6 @@
* You should have received a copy of the GNU General Public License
* along with The Mana World; if not, write to the Free Software
* Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA
- *
- * $Id$
*/
#include <cstdlib>
diff --git a/src/utils/zlib.hpp b/src/utils/zlib.hpp
index 330dd8ca..c435c712 100644
--- a/src/utils/zlib.hpp
+++ b/src/utils/zlib.hpp
@@ -17,8 +17,6 @@
* You should have received a copy of the GNU General Public License
* along with The Mana World; if not, write to the Free Software
* Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA
- *
- * $Id$
*/
#ifndef _TMWSERV_ZLIB