Changeset 25513
- Timestamp:
- 09/01/20 17:47:48 (5 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
issm/trunk-jpl/src/c/shared/io/Marshalling/Marshalling.h
r25512 r25513 16 16 MARSHALLING_LOAD, 17 17 MARSHALLING_SIZE, 18 #if def _HAVE_CODIPACK_18 #if defined(_HAVE_CODIPACK_) && !defined(_WRAPPERS_) 19 19 AD_COUNTDOUBLES, 20 20 AD_REGISTERINPUT, … … 113 113 } 114 114 };/*}}}*/ 115 #if def _HAVE_CODIPACK_115 #if defined(_HAVE_CODIPACK_) && !defined(_WRAPPERS_) 116 116 class CountDoublesFunctor: public MarshallHandle{ /*{{{*/ 117 117 … … 254 254 case MARSHALLING_LOAD: {LoadCheckpointFunctor* temp = xDynamicCast<LoadCheckpointFunctor*>(this); temp->call(value); break;} 255 255 case MARSHALLING_SIZE: {SizeCheckpointFunctor* temp = xDynamicCast<SizeCheckpointFunctor*>(this); temp->call(value); break;} 256 #if def _HAVE_CODIPACK_256 #if defined(_HAVE_CODIPACK_) && !defined(_WRAPPERS_) 257 257 case AD_COUNTDOUBLES: {CountDoublesFunctor* temp = xDynamicCast<CountDoublesFunctor*>(this); temp->call(value); break;} 258 258 case AD_REGISTERINPUT: {RegisterInputFunctor* temp = xDynamicCast<RegisterInputFunctor*>(this); temp->call(value); break;} … … 268 268 case MARSHALLING_LOAD: {LoadCheckpointFunctor* temp = xDynamicCast<LoadCheckpointFunctor*>(this); temp->call(value,size); break;} 269 269 case MARSHALLING_SIZE: {SizeCheckpointFunctor* temp = xDynamicCast<SizeCheckpointFunctor*>(this); temp->call(value,size); break;} 270 #if def _HAVE_CODIPACK_270 #if defined(_HAVE_CODIPACK_) && !defined(_WRAPPERS_) 271 271 case AD_COUNTDOUBLES: {CountDoublesFunctor* temp = xDynamicCast<CountDoublesFunctor*>(this); temp->call(value,size); break;} 272 272 case AD_REGISTERINPUT: {RegisterInputFunctor* temp = xDynamicCast<RegisterInputFunctor*>(this); temp->call(value,size); break;}
Note:
See TracChangeset
for help on using the changeset viewer.