From: Tom H. <tom...@us...> - 2003-01-06 17:23:06
|
Update of /cvsroot/rccparser/rcclient/src In directory sc8-pr-cvs1:/tmp/cvs-serv26364/src Modified Files: Makefile.am rcclient.cpp rcclient.h Log Message: 2003-01-06 Tom Howard <tom...@us...> * ./configure.ac Released rcclient-0.0.0 Index: Makefile.am =================================================================== RCS file: /cvsroot/rccparser/rcclient/src/Makefile.am,v retrieving revision 1.1.1.1 retrieving revision 1.2 diff -C2 -d -r1.1.1.1 -r1.2 *** Makefile.am 6 Jan 2003 15:11:07 -0000 1.1.1.1 --- Makefile.am 6 Jan 2003 17:22:46 -0000 1.2 *************** *** 1,3 **** ! pkglib_LTLIBRARIES = librcclient.la CLEANFILES = \ --- 1,3 ---- ! lib_LTLIBRARIES = librcclient.la CLEANFILES = \ Index: rcclient.cpp =================================================================== RCS file: /cvsroot/rccparser/rcclient/src/rcclient.cpp,v retrieving revision 1.2 retrieving revision 1.3 diff -C2 -d -r1.2 -r1.3 *** rcclient.cpp 6 Jan 2003 16:24:48 -0000 1.2 --- rcclient.cpp 6 Jan 2003 17:22:49 -0000 1.3 *************** *** 119,126 **** PlayerType type ) { ! m_output << "(init " << team_name << " (version " << version << ")"; ! if( type == GOALIE ) ! m_output << "(goalie)"; ! m_output << ")" << std::ends << std::flush; } --- 119,131 ---- PlayerType type ) { ! m_output << "(init " << team_name << " (version " << version << ")" ! << type << ")" << std::ends << std::flush; ! } ! ! void ! Client::reconnect( const std::string& team_name, int unum ) ! { ! m_output << "(reconnect " << team_name << " " << unum << ")" ! << std::ends << std::flush; } Index: rcclient.h =================================================================== RCS file: /cvsroot/rccparser/rcclient/src/rcclient.h,v retrieving revision 1.1.1.1 retrieving revision 1.2 diff -C2 -d -r1.1.1.1 -r1.2 *** rcclient.h 6 Jan 2003 15:11:07 -0000 1.1.1.1 --- rcclient.h 6 Jan 2003 17:22:53 -0000 1.2 *************** *** 96,99 **** --- 96,102 ---- void + reconnect( const std::string& team_name, int unum ); + + void dash( double power ); |