summaryrefslogtreecommitdiff
path: root/src/core/commandqueue.h
diff options
context:
space:
mode:
Diffstat (limited to 'src/core/commandqueue.h')
-rw-r--r--src/core/commandqueue.h19
1 files changed, 19 insertions, 0 deletions
diff --git a/src/core/commandqueue.h b/src/core/commandqueue.h
new file mode 100644
index 0000000..1e86c3f
--- /dev/null
+++ b/src/core/commandqueue.h
@@ -0,0 +1,19 @@
+#ifndef COAL_COMMANDQUEUE_H
+#define COAL_COMMANDQUEUE_H
+
+namespace Coal {
+
+ class CommandQueue
+ {
+ public:
+ CommandQueue();
+ ~CommandQueue();
+ };
+}
+
+struct _cl_command_queue : public Coal::CommandQueue
+{
+};
+
+
+#endif