--- trunk/mdtools/md_code/SimInfo.cpp 2003/01/23 16:21:09 243 +++ trunk/mdtools/md_code/SimInfo.cpp 2003/01/27 21:28:19 249 @@ -7,7 +7,7 @@ extern "C"{ double*, double*))); } -void wrapSimInfo((void (*fSub)( int*, double*, double*, double*))); +void wrapSimInfo(void (*fSub)( int*, double*, double*, double*)); SimInfo* currentInfo; @@ -31,6 +31,7 @@ void SimInfo::wrapMe(){ wrapsimmod_( wrapSimInfo ); } + void SimInfo::refreshSim(){ double box[3]; @@ -43,7 +44,7 @@ void SimInfo::refreshSim(){ } -void wrapSimInfo((void (*fSub)( int*, double*, double*, double*))){ +void wrapSimInfo(void (*fSub)( int*, double*, double*, double*)){ currentInfo->setInternal(fSub); }