mirror of
https://github.com/OpenMP/Examples.git
synced 2025-04-10 16:32:11 +01:00
10 lines
159 B
C++
10 lines
159 B
C++
#pragma omp begin declare target
|
|
class XOR1
|
|
{
|
|
int a;
|
|
public:
|
|
XOR1(int arg): a(arg) {};
|
|
int foo();
|
|
};
|
|
#pragma omp end declare target
|