/* * cache.c * * Save a list of features from images to save recalculation * * (c) 2007 Gordon Ball * Thomas White * * dtr - Diffraction Tomography Reconstruction * */ #ifndef CACHE_H #define CACHE_H #ifdef HAVE_CONFIG_H #include #endif #include "image.h" extern int cache_load(ImageList *images, const char *filename); extern int cache_save(ImageList *images, const char *filename); #endif /*CACHE_H */