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 "events/KernelEvent.h" 00017 00018 namespace nrEngine{ 00019 00020 //---------------------------------------------------------------------------------- 00021 KernelEvent::KernelEvent(const std::string& taskName, TaskId id, Priority prior) : Event(prior) 00022 { 00023 mTaskId = id; 00024 mTaskName = taskName; 00025 } 00026 00027 }; // end namespace 00028