00001 // ===================================================================================== 00002 // Filename: InputActor.cpp 00003 // Description: 00004 // Version: 1.0 00005 // Created: 03/30/2007 06:52:15 PM EDT 00006 // Revision: none 00007 // Compiler: gcc 3.4.6 // 00008 // Author: John P. Feltz 00009 // Email: jfeltz@gmail.com 00010 // License: Copyright (c) 2006-2007, John P. Feltz 00011 // This program is free software; you can redistribute it and/or 00012 // modify it under the terms of the GNU General Public License as 00013 // published by the Free Software Foundation, version 2 of the 00014 // License. 00015 // This program is distributed in the hope that it will be 00016 // useful, but WITHOUT ANY WARRANTY; without even the implied 00017 // warranty of MERCHANTABILITY or FITNESS FOR A PARTICULAR 00018 // PURPOSE. 00019 // See the GNU General Public License version 2 for more details. 00020 // 00021 // ===================================================================================== 00022 00023 #include <iostream> 00024 00025 #include <util/Singleton.h> 00026 #include <util/Logger.h> 00027 00028 #include <InputAction.h> 00029 #include <InputData.h> 00030 #include <InputActor.h> 00031 00032 namespace cmil { 00033 std::string InputActor::getName() const { 00034 return "InputActor"; 00035 }; 00036 }