|
From: <mk...@us...> - 2003-07-17 10:12:42
|
Update of /cvsroot/csp/APPLICATIONS/SimData
In directory sc8-pr-cvs1:/tmp/cvs-serv5974
Modified Files:
CHANGES.current Makefile setup.py
Log Message:
see CHANGES.current
Index: CHANGES.current
===================================================================
RCS file: /cvsroot/csp/APPLICATIONS/SimData/CHANGES.current,v
retrieving revision 1.41
retrieving revision 1.42
diff -C2 -d -r1.41 -r1.42
*** CHANGES.current 30 Jun 2003 22:36:25 -0000 1.41
--- CHANGES.current 17 Jul 2003 10:12:39 -0000 1.42
***************
*** 2,5 ****
--- 2,20 ----
===========================
+ 2003-07-16: onsight
+ Tweaked TypeAdapter constructors to disambiguate the copy
+ constructor. The build now works with g++-3.3.
+
+ New lookup table classes in LUT.h. The code is not yet
+ complete and should not be used for anything other than
+ testing at this point.
+
+ Added new Key data type, which is just a string converted
+ to and stored as a 32-bit hash value.
+
+ ==========> VC USERS: add Key.cpp to the project.
+
+ Added date comparison methods.
+
2003-07-01: delta
Added a SWIG_GLOBAL define on cSimData_wrap.cpp to enable log level.
Index: Makefile
===================================================================
RCS file: /cvsroot/csp/APPLICATIONS/SimData/Makefile,v
retrieving revision 1.13
retrieving revision 1.14
diff -C2 -d -r1.13 -r1.14
*** Makefile 3 Jul 2003 18:10:11 -0000 1.13
--- Makefile 17 Jul 2003 10:12:39 -0000 1.14
***************
*** 7,11 ****
export GLDOPTS = -shared -lswigpy -ldl
export GSWOPTS = -c -c++ -python -noexcept
! export CXX = g++
export SWIG = swig
--- 7,11 ----
export GLDOPTS = -shared -lswigpy -ldl
export GSWOPTS = -c -c++ -python -noexcept
! export CXX = g++-3.2
export SWIG = swig
Index: setup.py
===================================================================
RCS file: /cvsroot/csp/APPLICATIONS/SimData/setup.py,v
retrieving revision 1.21
retrieving revision 1.22
diff -C2 -d -r1.21 -r1.22
*** setup.py 13 May 2003 18:24:46 -0000 1.21
--- setup.py 17 Jul 2003 10:12:39 -0000 1.22
***************
*** 235,238 ****
--- 235,239 ----
"InterfaceRegistry",
"Interpolate",
+ "Key",
"Link",
"List",
***************
*** 270,275 ****
--- 271,278 ----
"InterfaceRegistry.h",
"Interpolate.h",
+ "Key.h",
"Link.h",
"List.h",
+ "LUT.h",
"Log.h",
"LogStream.h",
***************
*** 310,316 ****
--- 313,321 ----
"InterfaceRegistry.i",
"Interpolate.i",
+ "Key.i",
"Link.i",
"List.i",
"Log.i",
+ "LUT.i",
"Math.i",
"Matrix3.i",
|