aboutsummaryrefslogtreecommitdiff
path: root/src/cache.h
blob: 2f1908a7f3de15110dcb2cd59a3fe1bbe3365d7b (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
/*
 * cache.c
 *
 * Save a list of features from images to save recalculation
 *
 * (c) 2007 Gordon Ball <gfb21@cam.ac.uk>
 *	    Thomas White <taw27@cam.ac.uk>
 *
 *  dtr - Diffraction Tomography Reconstruction
 *
 */
 
#ifndef CACHE_H
#define CACHE_H

#ifdef HAVE_CONFIG_H
#include <config.h>
#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 */