Index: include/arrayBuffer.h
===================================================================
--- include/arrayBuffer.h	(revision 1a5449e54c7d70707ce3a79079daa0db25108911)
+++ include/arrayBuffer.h	(revision 1e62ed50e7d6e4f3454ba6e866236e885a056ce0)
@@ -1,9 +1,30 @@
 #pragma once
 
-
+/**
+ * @ingroup NSClient++
+ *
+ * A simple namespace (wrapper) to wrap functions to manipulate an array buffer.
+ *
+ * @version 1.0
+ * first version
+ *
+ * @date 05-14-2005
+ *
+ * @author mickem
+ *
+ * @par license
+ * This code is absolutely free to use and modify. The code is provided "as is" with
+ * no expressed or implied warranty. The author accepts no liability if it causes
+ * any damage to your computer, causes your pet to fall ill, increases baldness
+ * or makes your car start emitting strange noises when you start it up.
+ * This code has no bugs, just undocumented features!
+ * 
+ * @todo 
+ *
+ * @bug 
+ *
+ */
 namespace arrayBuffer {
-
 	typedef std::list<std::string> arrayList;
-
 	arrayList arrayBuffer2list(const unsigned int argLen, char **argument);
 	char ** list2arrayBuffer(const arrayList lst, unsigned int &argLen);
@@ -14,12 +35,9 @@
 	void destroyArrayBuffer(char **argument, const unsigned int argLen);
 
-
 #ifdef _DEBUG
 	void test_createEmptyArrayBuffer();
 	void test_split2arrayBuffer_str(std::string buffer, char splitter, int OUT_argLen);
 	void test_split2arrayBuffer_char(char* buffer, char splitter, int OUT_argLen);
-
 	void run_testArrayBuffer();
 #endif
-
 }
