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

namespace Coal {

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

struct _cl_command_queue : public Coal::CommandQueue
{
};


#endif