]> ruin.nu Git - eonsl.git/commitdiff
START master origin
authorMichael Andreen <harv@ruin.nu>
Sat, 10 Mar 2001 18:30:45 +0000 (18:30 +0000)
committerMichael Andreen <harv@ruin.nu>
Sat, 10 Mar 2001 18:30:45 +0000 (18:30 +0000)
eonsl/citem.cpp [new file with mode: 0644]
eonsl/citem.h [new file with mode: 0644]

diff --git a/eonsl/citem.cpp b/eonsl/citem.cpp
new file mode 100644 (file)
index 0000000..850d7a9
--- /dev/null
@@ -0,0 +1,24 @@
+/***************************************************************************
+                          citem.cpp  -  description
+                             -------------------
+    begin                : Sat Mar 10 2001
+    copyright            : (C) 2001 by Michael Andreen
+    email                : whale@linux.nu
+ ***************************************************************************/
+
+/***************************************************************************
+ *                                                                         *
+ *   This program is free software; you can redistribute it and/or modify  *
+ *   it under the terms of the GNU General Public License as published by  *
+ *   the Free Software Foundation; either version 2 of the License, or     *
+ *   (at your option) any later version.                                   *
+ *                                                                         *
+ ***************************************************************************/
+
+
+#include "citem.h"
+
+CItem::CItem(){
+}
+CItem::~CItem(){
+}
diff --git a/eonsl/citem.h b/eonsl/citem.h
new file mode 100644 (file)
index 0000000..6896c4b
--- /dev/null
@@ -0,0 +1,33 @@
+/***************************************************************************
+                          citem.h  -  description
+                             -------------------
+    begin                : Sat Mar 10 2001
+    copyright            : (C) 2001 by Michael Andreen
+    email                : whale@linux.nu
+ ***************************************************************************/
+
+/***************************************************************************
+ *                                                                         *
+ *   This program is free software; you can redistribute it and/or modify  *
+ *   it under the terms of the GNU General Public License as published by  *
+ *   the Free Software Foundation; either version 2 of the License, or     *
+ *   (at your option) any later version.                                   *
+ *                                                                         *
+ ***************************************************************************/
+
+
+#ifndef CITEM_H
+#define CITEM_H
+
+
+/**
+  *@author Michael Andreen
+  */
+
+class CItem {
+public: 
+       CItem();
+       ~CItem();
+};
+
+#endif