/* * cache.c * * Save the reflection datablock to save having to recalculate it * * (c) 2007 Gordon Ball * Thomas White * * dtr - Diffraction Tomography Reconstruction * */ #ifndef CACHE_H #define CACHE_H #ifdef HAVE_CONFIG_H #include #endif extern ReflectionList *cache_load(const char *filename); extern int cache_save(ReflectionList *reflectionlist, char *cache_filename); #endif /*CACHE_H_*/