From: Michael Andreen Date: Sat, 10 Mar 2001 18:30:45 +0000 (+0000) Subject: START X-Git-Url: https://ruin.nu/git/?p=eonsl.git;a=commitdiff_plain;h=41bd409fdcb5f481fec47d9401bcbc808e9ff7bc START --- 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