1
0
mirror of https://github.com/opencv/opencv.git synced 2026-07-30 15:53:03 +04:00

ocl: refactor program compilation

This commit is contained in:
Alexander Alekhin
2017-09-07 16:41:19 +03:00
committed by Alexander Alekhin
parent 04b4495493
commit 6be25727ec
2 changed files with 47 additions and 21 deletions
+5 -2
View File
@@ -613,8 +613,10 @@ public:
String getPrefix() const;
static String getPrefix(const String& buildflags);
protected:
struct Impl;
inline Impl* getImpl() const { return (Impl*)p; }
protected:
Impl* p;
};
@@ -635,8 +637,9 @@ public:
const String& source() const;
hash_t hash() const; // deprecated
protected:
struct Impl;
inline Impl* getImpl() const { return (Impl*)p; }
protected:
Impl* p;
};