[GME-commit] GMESRC/SDK/BON BON.cpp,1.9,1.10 BON2Component.cpp,1.5,1.6 BONImpl.cpp,1.25,1.26 Common.cpp,1.5,1.6 Events.cpp,1.4,1.5 Exceptions.cpp,1.4,1.5 Extensions.cpp,1.9,1.10 MON.cpp,1.7,1.8 MONImpl.cpp,1.8,1.9 Utils.cpp,1.3,1.4

gme-commit at list.isis.vanderbilt.edu gme-commit at list.isis.vanderbilt.edu
Wed Jun 29 20:16:37 CDT 2005


Update of /project/gme-repository/GMESRC/SDK/BON
In directory escher:/tmp/cvs-serv21041

Modified Files:
	BON.cpp BON2Component.cpp BONImpl.cpp Common.cpp Events.cpp 
	Exceptions.cpp Extensions.cpp MON.cpp MONImpl.cpp Utils.cpp 
Log Message:
#include "stdafx.h" added for users who to the SDK/BON sources in order to compile with the "Use precompiled header" option as well.


CVS User: Zoltan Molnar, ISIS (zolmol)

Index: Utils.cpp
===================================================================
RCS file: /project/gme-repository/GMESRC/SDK/BON/Utils.cpp,v
retrieving revision 1.3
retrieving revision 1.4
diff -C2 -d -r1.3 -r1.4
*** Utils.cpp	3 Feb 2004 10:53:05 -0000	1.3
--- Utils.cpp	29 Jun 2005 19:16:34 -0000	1.4
***************
*** 20,23 ****
--- 20,24 ----
  */
  
+ #include "stdafx.h"
  #include "Utils.h"
  

Index: Events.cpp
===================================================================
RCS file: /project/gme-repository/GMESRC/SDK/BON/Events.cpp,v
retrieving revision 1.4
retrieving revision 1.5
diff -C2 -d -r1.4 -r1.5
*** Events.cpp	20 Oct 2004 19:42:57 -0000	1.4
--- Events.cpp	29 Jun 2005 19:16:34 -0000	1.5
***************
*** 22,25 ****
--- 22,26 ----
  #pragma warning( disable : 4786 )
  
+ #include "stdafx.h"
  #include "Events.h"
  #include "BONImpl.h"

Index: BONImpl.cpp
===================================================================
RCS file: /project/gme-repository/GMESRC/SDK/BON/BONImpl.cpp,v
retrieving revision 1.25
retrieving revision 1.26
diff -C2 -d -r1.25 -r1.26
*** BONImpl.cpp	6 Jun 2005 22:59:20 -0000	1.25
--- BONImpl.cpp	29 Jun 2005 19:16:34 -0000	1.26
***************
*** 22,25 ****
--- 22,26 ----
  #define TEST_META_CONFORMANCE_INSIDE_BON // by ZolMol
  
+ #include "stdafx.h"
  #include "BONImpl.h"
  #include "Extensions.h"

Index: BON.cpp
===================================================================
RCS file: /project/gme-repository/GMESRC/SDK/BON/BON.cpp,v
retrieving revision 1.9
retrieving revision 1.10
diff -C2 -d -r1.9 -r1.10
*** BON.cpp	23 Feb 2004 12:11:33 -0000	1.9
--- BON.cpp	29 Jun 2005 19:16:34 -0000	1.10
***************
*** 20,23 ****
--- 20,24 ----
  */
  
+ #include "stdafx.h"
  #include "BON.h"
  #include "BONImpl.h"

Index: MON.cpp
===================================================================
RCS file: /project/gme-repository/GMESRC/SDK/BON/MON.cpp,v
retrieving revision 1.7
retrieving revision 1.8
diff -C2 -d -r1.7 -r1.8
*** MON.cpp	12 Apr 2005 19:20:51 -0000	1.7
--- MON.cpp	29 Jun 2005 19:16:34 -0000	1.8
***************
*** 20,23 ****
--- 20,24 ----
  */
  
+ #include "stdafx.h"
  #include "MON.h"
  

Index: Extensions.cpp
===================================================================
RCS file: /project/gme-repository/GMESRC/SDK/BON/Extensions.cpp,v
retrieving revision 1.9
retrieving revision 1.10
diff -C2 -d -r1.9 -r1.10
*** Extensions.cpp	12 Apr 2005 19:20:51 -0000	1.9
--- Extensions.cpp	29 Jun 2005 19:16:34 -0000	1.10
***************
*** 22,25 ****
--- 22,26 ----
  #pragma warning ( disable : 4503 )
  
+ #include "stdafx.h"
  #include "Extensions.h"
  #include "BONImpl.h"

Index: MONImpl.cpp
===================================================================
RCS file: /project/gme-repository/GMESRC/SDK/BON/MONImpl.cpp,v
retrieving revision 1.8
retrieving revision 1.9
diff -C2 -d -r1.8 -r1.9
*** MONImpl.cpp	12 Apr 2005 19:20:51 -0000	1.8
--- MONImpl.cpp	29 Jun 2005 19:16:34 -0000	1.9
***************
*** 20,23 ****
--- 20,24 ----
  */
  
+ #include "stdafx.h"
  #include "MONImpl.h"
  

Index: Common.cpp
===================================================================
RCS file: /project/gme-repository/GMESRC/SDK/BON/Common.cpp,v
retrieving revision 1.5
retrieving revision 1.6
diff -C2 -d -r1.5 -r1.6
*** Common.cpp	3 Feb 2004 10:53:05 -0000	1.5
--- Common.cpp	29 Jun 2005 19:16:34 -0000	1.6
***************
*** 22,25 ****
--- 22,26 ----
  #pragma warning( disable : 4786 )
  
+ #include "stdafx.h"
  #include "Common.h"
  

Index: Exceptions.cpp
===================================================================
RCS file: /project/gme-repository/GMESRC/SDK/BON/Exceptions.cpp,v
retrieving revision 1.4
retrieving revision 1.5
diff -C2 -d -r1.4 -r1.5
*** Exceptions.cpp	3 Feb 2004 10:53:05 -0000	1.4
--- Exceptions.cpp	29 Jun 2005 19:16:34 -0000	1.5
***************
*** 20,23 ****
--- 20,24 ----
  */
  
+ #include "stdafx.h"
  #include "Exceptions.h"
  

Index: BON2Component.cpp
===================================================================
RCS file: /project/gme-repository/GMESRC/SDK/BON/BON2Component.cpp,v
retrieving revision 1.5
retrieving revision 1.6
diff -C2 -d -r1.5 -r1.6
*** BON2Component.cpp	20 Sep 2004 16:16:01 -0000	1.5
--- BON2Component.cpp	29 Jun 2005 19:16:34 -0000	1.6
***************
*** 20,23 ****
--- 20,24 ----
  */
  
+ #include "stdafx.h"
  #include "BON2Component.h"
  



More information about the GME-commit mailing list