RandomBallCover  1.2.1
 Hosted by GitHub
data_types.hpp
Go to the documentation of this file.
1 
29 #ifndef RBCDATATYPES_HPP
30 #define RBCDATATYPES_HPP
31 
32 #if defined(__APPLE__) || defined(__MACOSX)
33 #include <OpenCL/cl.hpp>
34 #else
35 #include <CL/cl.hpp>
36 #endif
37 
38 
43 typedef struct
44 {
45  cl_float dist;
46  cl_uint id;
47 } rbc_dist_id;
48 
49 #endif // RBCDATATYPES_HPP
Struct holding a value and a key.
Definition: data_types.hpp:43
cl_uint id
Definition: data_types.hpp:46
cl_float dist
Definition: data_types.hpp:45