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

#include "CL/cl.h"

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

struct _cl_event : public Coal::Event
{
};

#endif