00001 /*************************************************************************** 00002 * * 00003 * (c) Art Tevs, MPI Informatik Saarbruecken * 00004 * mailto: <tevs@mpi-sb.mpg.de> * 00005 * * 00006 * This program is free software; you can redistribute it and/or modify * 00007 * it under the terms of the GNU General Public License as published by * 00008 * the Free Software Foundation; either version 2 of the License, or * 00009 * (at your option) any later version. * 00010 * * 00011 ***************************************************************************/ 00012 00013 //---------------------------------------------------------------------------------- 00014 // Includes 00015 //---------------------------------------------------------------------------------- 00016 #include "Event.h" 00017 00018 00019 namespace nrEngine{ 00020 00021 //------------------------------------------------------------------------ 00022 Event::~Event() 00023 { 00024 00025 } 00026 00027 //------------------------------------------------------------------------ 00028 const Priority& Event::getPriority() 00029 { 00030 return mPriority; 00031 } 00032 00033 //------------------------------------------------------------------------ 00034 Event::Event(Priority prior):mPriority(prior) 00035 { 00036 00037 } 00038 00039 00040 }; // end namespace 00041