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

namespace Coal {

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

struct _cl_program : public Coal::Program
{
};


#endif