1 
2 #ifndef OPENCV_FLANN_DUMMY_H_
3 #define OPENCV_FLANN_DUMMY_H_
4 
5 namespace cvflann
6 {
7 
8 #if (defined WIN32 || defined _WIN32 || defined WINCE) && defined CVAPI_EXPORTS
9 __declspec(dllexport)
10 #endif
11 void dummyfunc();
12 
13 }
14 
15 
16 #endif  /* OPENCV_FLANN_DUMMY_H_ */
17