00001 /* -*- Mode: C++ -*- 00002 * $Id: TrainerCheckBallCommand.cc,v 1.1 2006/09/06 18:03:46 frehe Exp $ 00003 * 00004 * 00005 * COPYRIGHT INFORMATION 00006 * 00007 * This file is part of RoboSoc created by Fredrik Heintz <frehe@ida.liu.se> 00008 * Copyright (C) 1999, 2000 Fredrik Heintz, Linköping University, Sweden 00009 * 00010 * You are allowed to modify and use this code as long as you retain this 00011 * notice. If you make any changes or have any comments I would appreciate 00012 * it if you send me a message. For more information, please see 00013 * http://www.ida.liu.se/~frehe/RoboCup/RoboSoc/ 00014 * 00015 * 00016 * IDENTIFICATION 00017 * 00018 * Filename: TrainerCheckBallCommand.cc 00019 * Unitname: Library 00020 * $Revision: 1.1 $ 00021 * Created by: Fredrik Heintz 2004-08-23 00022 * Last modified by $Author: frehe $ $Date: 2006/09/06 18:03:46 $ 00023 * 00024 * HISTORY 00025 * 00026 * $Log: TrainerCheckBallCommand.cc,v $ 00027 * Revision 1.1 2006/09/06 18:03:46 frehe 00028 * Moved files from Library to BasicSystem. 00029 * 00030 * Revision 1.1 2004/08/23 20:45:29 frehe 00031 * Added trainer commands. 00032 * 00033 */ 00034 00047 #include "TrainerCheckBallCommand.h" 00048 00049 00050 RS_BEGIN_NAMESPACE 00051 00052 00053 TrainerCheckBallCommand::TrainerCheckBallCommand() 00054 : TrainerCommand(CMD_CheckBall) 00055 { 00056 } 00057 00058 00059 TrainerCheckBallCommand::~TrainerCheckBallCommand() { 00060 } 00061 00062 00063 const std::string 00064 TrainerCheckBallCommand::serverString() const { 00065 return "(check_ball)"; 00066 } 00067 00068 00069 TrainerCheckBallCommand* 00070 TrainerCheckBallCommand::clone() const { 00071 return new TrainerCheckBallCommand(*this); 00072 } 00073 00074 00075 RS_END_NAMESPACE
1.3-rc3