blob: 04dbdb91586461f9916a0a403bd67db0d0ce96ff (
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
|
/*
* cache.c
*
* Save the reflection datablock to save having to recalculate it
*
* (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
extern ReflectionList *cache_load(const char *filename);
extern int cache_save(ReflectionList *reflectionlist, char *cache_filename);
#endif /*CACHE_H_*/
|