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
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
/**
Generate ::freesasa_structure from CIF document.
A copy of the document is stored in memory to allow reusing it later in
::freesasa_export_tree_to_cif.
To free that memory call ::freesasa_cif_clear_docs();
@param input Input file
@param classifier Classifier to use
@param structure_options Options (see ::freesasa_structure_add_atom)
*/
freesasa_structure *
;
/**
Generate a set of structures from one file. See ::freesasa_structure_array.
@param input Input file
@param n Output variable for size
@param classifier Classifier to use
@param options Options (see ::freesasa_structure_array)
*/
std::vector<freesasa_structure *>
;
/**
Output calculation results as part of a CIF document.
Takes the original CIF document, and adds the data where appropriate.
@param filename Output filename. If NULL output will be written to stdout.
@param root Result tree to generate output from
*/
int ;
/* CIF_HH */