123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869 |
- /*M
- #ifndef OPENCV_OPENCL_GENBASE_HPP
- #define OPENCV_OPENCL_GENBASE_HPP
- namespace cv {
- namespace ocl {
- class ProgramSource;
- namespace internal {
- struct CV_EXPORTS ProgramEntry
- {
- const char* module;
- const char* name;
- const char* programCode;
- const char* programHash;
- ProgramSource* pProgramSource;
- operator ProgramSource& () const;
- };
- } } }
- #endif
|