From: <de...@us...> - 2002-12-15 12:08:50
|
Update of /cvsroot/csp/APPLICATIONS/CSPFlightSim/Source In directory sc8-pr-cvs1:/tmp/cvs-serv21269 Modified Files: LogoScreen.cpp Log Message: Added #include <iostream> to fix compilation error with vc++ Index: LogoScreen.cpp =================================================================== RCS file: /cvsroot/csp/APPLICATIONS/CSPFlightSim/Source/LogoScreen.cpp,v retrieving revision 1.5 retrieving revision 1.6 diff -C2 -d -r1.5 -r1.6 *** LogoScreen.cpp 15 Dec 2002 01:39:19 -0000 1.5 --- LogoScreen.cpp 15 Dec 2002 12:08:47 -0000 1.6 *************** *** 1,2 **** --- 1,4 ---- + #include <iostream> + #ifdef WIN32 #include <windows.h> *************** *** 20,24 **** if (m_image == NULL) { ! cout << "Unable to load bitmap " << path << endl; } --- 22,26 ---- if (m_image == NULL) { ! std::cout << "Unable to load bitmap " << path << std::endl; } |