[Gcblue-commits] gcb_wx/src/common tcStream.cpp,1.3,1.4
Status: Alpha
Brought to you by:
ddcforge
|
From: Dewitt C. <ddc...@us...> - 2004-05-01 21:49:16
|
Update of /cvsroot/gcblue/gcb_wx/src/common In directory sc8-pr-cvs1.sourceforge.net:/tmp/cvs-serv6949/src/common Modified Files: tcStream.cpp Log Message: multiplayer Index: tcStream.cpp =================================================================== RCS file: /cvsroot/gcblue/gcb_wx/src/common/tcStream.cpp,v retrieving revision 1.3 retrieving revision 1.4 diff -C2 -d -r1.3 -r1.4 *** tcStream.cpp 23 Apr 2004 00:15:16 -0000 1.3 --- tcStream.cpp 1 May 2004 21:49:06 -0000 1.4 *************** *** 1,3 **** --- 1,22 ---- + /* + ** @file tcStream.cpp + ** + ** Copyright (C) 2004 Dewitt Colclough (de...@tw...) + ** All rights reserved. + ** This file is part of the Global Conflict Blue (GCB) program. + ** GCB is free software; you can redistribute it and/or modify + ** it under the terms of version 2 of the GNU General Public License as + ** published by the Free Software Foundation. + + ** GCB is distributed in the hope that it will be useful, + ** but WITHOUT ANY WARRANTY; without even the implied warranty of + ** MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the + ** GNU General Public License for more details. + + ** You should have received a copy of the GNU General Public License + ** along with GCB; if not, write to the Free Software + ** Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA + */ *************** *** 15,18 **** --- 34,45 ---- /** + * copy constructor + */ + tcStream::tcStream(const tcStream& stream) + : std::stringstream(stream.str()) + { + } + + /** * default constructor */ |