From: <ci...@us...> - 2002-08-24 02:29:47
|
Update of /cvsroot/decaldev/source/Inject In directory usw-pr-cvs1:/tmp/cvs-serv23297/Inject Modified Files: Manager.cpp StdAfx.h View.cpp Log Message: Additions to make Decal more STL compliant compilation-wise with header header files. This adds in some #includes for <string> and <stdio.h> in the few places where you were getting it for free the DevStudio automagic but should have been including them to begin with. Changes have been tested both with and without STLport (www.stlport.com) in the paths for compilations purposes. No functional code changes have been made just the #include additions. Index: Manager.cpp =================================================================== RCS file: /cvsroot/decaldev/source/Inject/Manager.cpp,v retrieving revision 1.58 retrieving revision 1.59 diff -C2 -d -r1.58 -r1.59 *** Manager.cpp 1 Aug 2002 00:52:24 -0000 1.58 --- Manager.cpp 24 Aug 2002 02:29:44 -0000 1.59 *************** *** 1,4 **** --- 1,5 ---- // Manager.cpp : Implementation of cManager #include "stdafx.h" + #include <stdio.h> #include "Inject.h" #include "Manager.h" Index: StdAfx.h =================================================================== RCS file: /cvsroot/decaldev/source/Inject/StdAfx.h,v retrieving revision 1.6 retrieving revision 1.7 diff -C2 -d -r1.6 -r1.7 *** StdAfx.h 12 Apr 2002 01:07:34 -0000 1.6 --- StdAfx.h 24 Aug 2002 02:29:44 -0000 1.7 *************** *** 36,39 **** --- 36,40 ---- #include <deque> #include <queue> + #include <string> #import <msxml.dll> Index: View.cpp =================================================================== RCS file: /cvsroot/decaldev/source/Inject/View.cpp,v retrieving revision 1.11 retrieving revision 1.12 diff -C2 -d -r1.11 -r1.12 *** View.cpp 3 Aug 2002 21:19:48 -0000 1.11 --- View.cpp 24 Aug 2002 02:29:44 -0000 1.12 *************** *** 1,4 **** --- 1,5 ---- // View.cpp : Implementation of cView #include "stdafx.h" + #include <stdio.h> #include "Inject.h" #include "View.h" |