From 41bd409fdcb5f481fec47d9401bcbc808e9ff7bc Mon Sep 17 00:00:00 2001 From: Michael Andreen Date: Sat, 10 Mar 2001 18:30:45 +0000 Subject: [PATCH] START --- eonsl/citem.cpp | 24 ++++++++++++++++++++++++ eonsl/citem.h | 33 +++++++++++++++++++++++++++++++++ 2 files changed, 57 insertions(+) create mode 100644 eonsl/citem.cpp create mode 100644 eonsl/citem.h diff --git a/eonsl/citem.cpp b/eonsl/citem.cpp new file mode 100644 index 0000000..850d7a9 --- /dev/null +++ b/eonsl/citem.cpp @@ -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 index 0000000..6896c4b --- /dev/null +++ b/eonsl/citem.h @@ -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 -- 2.39.2