/* (c) 1999-2000 Tino Schwarze, see COPYING for details */
/**
 * implementation of cEvent
 */

#include "cEvent.hh"

/**
 * constructor
 	*/
cEvent::cEvent (const string &type)
:	mName (type)
{
}

/**
 * destructor
 	*/
cEvent::~cEvent ()
{
}


ostream &operator << (ostream &os, const cEvent &ev)
{
	return (os << ev.mName);
}

ostream &operator << (ostream &os, const cStorableEvent &se)
{
	return (os << *(se.mEvent));
}

