blob: 8d438aafff0f62a539d856699c68c6007610cfff (
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
|
/*
* qdrp.h
*
* Handle QDRP-style control files
*
* (c) 2007 Thomas White <taw27@cam.ac.uk>
* dtr - Diffraction Tomography Reconstruction
*
*/
#ifdef HAVE_CONFIG_H
#include <config.h>
#endif
#ifndef QDRP_H
#define QDRP_H
#include "control.h"
extern int qdrp_read(ControlContext *ctx);
extern unsigned int qdrp_is_qdrprc(const char *filename);
#endif /* QDRP_H */
|