Cleaned up most occurances of "using namespace std;".
[crack-attack.git] / src / sstream.h
blob91144f440111bb4b50164a775fa4096c5b3d103e
1 /*
2 * GarbageQueue.cxx
3 *
4 * Crack Attack! is the legal property of its developers, whose names
5 * are too numerous to list here. Please refer to the COPYRIGHT file
6 * distributed with this source distribution for a full listing.
7 *
8 * This program is free software; you can redistribute it and/or
9 * modify it under the terms of the GNU General Public License
10 * as published by the Free Software Foundation; either version 2
11 * of the License, or (at your option) any later version.
13 * This program is distributed in the hope that it will be useful,
14 * but WITHOUT ANY WARRANTY; without even the implied warranty of
15 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
16 * GNU General Public License for more details.
18 * You should have received a copy of the GNU General Public License
19 * along with this program; if not, write to the Free Software
20 * Foundation, Inc., 59 Temple Place - Suite 330, Boston, MA 02111-1307, USA.
23 #ifndef _SSTREAM_H_
24 #define _SSTREAM_H_
26 #ifndef _WIN32
27 # include <sstream>
28 #else
29 # ifndef __MINGW32__
30 # include <strstrea.h>
31 # else
32 # include <sstream>
33 # endif
34 #endif
36 #endif