summaryrefslogtreecommitdiff
path: root/src/core/mem.h
blob: ebf7b55ce0208c6bb0f2212539e4efc95975f764 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
#ifndef COAL_MEM_H
#define COAL_MEM_H

#include "CL/cl.h"

namespace Coal {

   class Mem
   {
   public:
      Mem();
      ~Mem();
   };
}

struct _cl_mem : public Coal::Mem
{
};


#endif