From: <de...@us...> - 2003-02-03 19:11:07
|
Update of /cvsroot/csp/APPLICATIONS/SimData/Include/SimData In directory sc8-pr-cvs1:/tmp/cvs-serv18768 Modified Files: Random.h Log Message: no message Index: Random.h =================================================================== RCS file: /cvsroot/csp/APPLICATIONS/SimData/Include/SimData/Random.h,v retrieving revision 1.2 retrieving revision 1.3 diff -C2 -d -r1.2 -r1.3 *** Random.h 28 Jan 2003 23:26:06 -0000 1.2 --- Random.h 3 Feb 2003 19:11:04 -0000 1.3 *************** *** 31,34 **** --- 31,39 ---- #include <math.h> + + #ifdef _WIN32 + #include <SimData/Export.h> + #endif + #include <SimData/ns-simdata.h> *************** *** 50,54 **** * @author Mark Rose <mr...@st...> */ ! class Random { long _seed; float _r; --- 55,59 ---- * @author Mark Rose <mr...@st...> */ ! class SIMDATA_EXPORT Random { long _seed; float _r; *************** *** 89,93 **** * Global random number generator. */ ! extern Random g_Random; --- 94,99 ---- * Global random number generator. */ ! ! SIMDATA_EXPORT extern Random g_Random; |