summaryrefslogtreecommitdiff
path: root/src/core/kernel.h
blob: 9501c251850984052f63976467603091cc245176 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
#ifndef COAL_KERNEL_H
#define COAL_KERNEL_H

namespace Coal
{
   class Kernel
   {
   public:
      Kernel();
      ~Kernel();
   };
}

struct _cl_kernel : public Coal::Kernel
{
};

#endif