Update of /cvsroot/csp/APPLICATIONS/SimData/Include/SimData
In directory sc8-pr-cvs1:/tmp/cvs-serv13489
Modified Files:
Vector3.h ObjectInterface.h HashUtility.h Enum.h
Log Message:
no message
Index: Vector3.h
===================================================================
RCS file: /cvsroot/csp/APPLICATIONS/SimData/Include/SimData/Vector3.h,v
retrieving revision 1.7
retrieving revision 1.8
diff -C2 -d -r1.7 -r1.8
*** Vector3.h 12 Apr 2003 08:56:38 -0000 1.7
--- Vector3.h 4 May 2003 10:57:48 -0000 1.8
***************
*** 149,153 ****
// friend arithmetic operators
! friend Vector3 operator/(const Vector3 &a, double f);
friend Vector3 operator*(double f, const Vector3 &a);
friend Vector3 operator^(const Vector3 & u, const Vector3 & v);
--- 149,153 ----
// friend arithmetic operators
! friend SIMDATA_EXPORT Vector3 operator/(const Vector3 &a, double f);
friend Vector3 operator*(double f, const Vector3 &a);
friend Vector3 operator^(const Vector3 & u, const Vector3 & v);
Index: ObjectInterface.h
===================================================================
RCS file: /cvsroot/csp/APPLICATIONS/SimData/Include/SimData/ObjectInterface.h,v
retrieving revision 1.17
retrieving revision 1.18
diff -C2 -d -r1.17 -r1.18
*** ObjectInterface.h 3 May 2003 10:35:02 -0000 1.17
--- ObjectInterface.h 4 May 2003 10:57:48 -0000 1.18
***************
*** 255,259 ****
#else
-
template <class C, typename T>
class MemberAccessor< C, std::vector<T> >: public MemberAccessorBase
--- 255,258 ----
Index: HashUtility.h
===================================================================
RCS file: /cvsroot/csp/APPLICATIONS/SimData/Include/SimData/HashUtility.h,v
retrieving revision 1.10
retrieving revision 1.11
diff -C2 -d -r1.10 -r1.11
*** HashUtility.h 23 Apr 2003 09:14:20 -0000 1.10
--- HashUtility.h 4 May 2003 10:57:48 -0000 1.11
***************
*** 29,32 ****
--- 29,36 ----
#define __SIMDATA_HASHUTILITY_H__
+ # if defined(_MSC_VER) && (_MSC_VER <= 1300)
+ #pragma warning(disable : 4251)
+ # endif
+
#include <iostream>
#include <string>
Index: Enum.h
===================================================================
RCS file: /cvsroot/csp/APPLICATIONS/SimData/Include/SimData/Enum.h,v
retrieving revision 1.7
retrieving revision 1.8
diff -C2 -d -r1.7 -r1.8
*** Enum.h 12 Apr 2003 08:56:37 -0000 1.7
--- Enum.h 4 May 2003 10:57:48 -0000 1.8
***************
*** 28,33 ****
#define __SIMDATA_ENUM_H__
! # if defined(_MSC_VER) && (_MSC_VER <= 1200)
! #pragma warning (disable : 4786)
# endif
--- 28,33 ----
#define __SIMDATA_ENUM_H__
! # if defined(_MSC_VER) && (_MSC_VER <= 1300)
! #pragma warning (disable : 4786 4251)
# endif
***************
*** 97,101 ****
class EnumerationCore;
-
/**
* A class representing a particular value from an associated enumeration set.
--- 97,100 ----
***************
*** 317,321 ****
}
#endif
-
class Enumeration;
--- 316,319 ----
|