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:
committed by
Alexander Alekhin
parent
04b4495493
commit
6be25727ec
@@ -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;
|
||||
};
|
||||
|
||||
|
||||
Reference in New Issue
Block a user