14 |
|
#ifndef OOC_BUILD_H |
15 |
|
#define OOC_BUILD_H |
16 |
|
|
17 |
+ |
#ifdef __cplusplus |
18 |
+ |
extern "C" { |
19 |
+ |
#endif |
20 |
+ |
|
21 |
|
/* Bottom-up construction of out-of-core octree in postorder traversal. |
22 |
|
* The octree oct is assumed to be initialised with its origin (oct -> |
23 |
|
* org), size (oct -> size), key callback (oct -> key), and its |
42 |
|
* failure, NULL is returned. */ |
43 |
|
OOC_Octree *OOC_Build (OOC_Octree *oct, unsigned leafMax, |
44 |
|
unsigned maxDepth); |
45 |
+ |
|
46 |
+ |
#ifdef __cplusplus |
47 |
+ |
} |
48 |
|
#endif |
49 |
< |
|
49 |
> |
|
50 |
> |
#endif |