From: <ci...@us...> - 2002-08-24 02:29:47
|
Update of /cvsroot/decaldev/source/DecalControls In directory usw-pr-cvs1:/tmp/cvs-serv23297/DecalControls Modified Files: Slider.cpp StdAfx.h 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: Slider.cpp =================================================================== RCS file: /cvsroot/decaldev/source/DecalControls/Slider.cpp,v retrieving revision 1.4 retrieving revision 1.5 diff -C2 -d -r1.4 -r1.5 *** Slider.cpp 24 Jul 2002 03:56:34 -0000 1.4 --- Slider.cpp 24 Aug 2002 02:29:43 -0000 1.5 *************** *** 1,3 **** --- 1,4 ---- #include "stdafx.h"// Slider.cpp : Implementation of cSlider + #include <stdio.h> #include "DecalControls.h" #include "Slider.h" Index: StdAfx.h =================================================================== RCS file: /cvsroot/decaldev/source/DecalControls/StdAfx.h,v retrieving revision 1.3 retrieving revision 1.4 diff -C2 -d -r1.3 -r1.4 *** StdAfx.h 5 Oct 2001 10:03:56 -0000 1.3 --- StdAfx.h 24 Aug 2002 02:29:43 -0000 1.4 *************** *** 26,30 **** #include <deque> #include <map> ! #include "..\Inject\Inject.h" #import <msxml.dll> --- 26,30 ---- #include <deque> #include <map> ! #include <string> #include "..\Inject\Inject.h" #import <msxml.dll> |