00001 /* -*- Mode: C++ -*- 00002 * $Id: CoachSayCommand.h,v 1.1 2006/09/06 18:03:22 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: CoachSayCommand.h 00019 * Unitname: Library 00020 * $Revision: 1.1 $ 00021 * Created by: Fredrik Heintz 2004-09-09 00022 * Last modified by $Author: frehe $ $Date: 2006/09/06 18:03:22 $ 00023 * 00024 * 00025 * HISTORY 00026 * 00027 * $Log: CoachSayCommand.h,v $ 00028 * Revision 1.1 2006/09/06 18:03:22 frehe 00029 * Moved files from Library to BasicSystem. 00030 * 00031 * Revision 1.1 2004/09/08 22:16:16 frehe 00032 * Added an unquoted say message needed by the coach and trainer. 00033 * 00034 */ 00035 00048 #ifndef COACH_SAY_COMMAND_H 00049 #define COACH_SAY_COMMAND_H 00050 00051 00052 #include "CoachOrTrainerCommand.h" 00053 00054 00055 RS_BEGIN_NAMESPACE 00056 00057 00070 class CoachSayCommand : public CoachOrTrainerCommand { 00071 public: 00072 CoachSayCommand(const std::string& msg); 00073 ~CoachSayCommand(); 00074 00076 const std::string serverString() const; 00077 00080 CoachSayCommand* clone() const; 00081 00082 00083 private: 00084 std::string message; 00085 }; 00086 00087 00088 RS_END_NAMESPACE 00089 00090 00091 #endif // !COACH_SAY_COMMAND_H
1.3-rc3