Skip to content

Commit

Permalink
Merge branch 'unstable' of github.com:Neverlord/libcppa into unstable
Browse files Browse the repository at this point in the history
  • Loading branch information
Neverlord committed Apr 19, 2013
2 parents f5ae41d + 9bffb2a commit 7afa31a
Showing 1 changed file with 8 additions and 1 deletion.
9 changes: 8 additions & 1 deletion cppa/opencl/program.hpp
Expand Up @@ -42,18 +42,25 @@ namespace cppa { namespace opencl {
template<typename Signature>
class actor_facade;

/**
* @brief A wrapper for OpenCL's cl_program.
*/
class program {

template<typename Signature>
friend class actor_facade;

public:

/**
* @brief Factory method, that creates a cppa::opencl::program
* from a given @p kernel_source.
* @returns A program object.
*/
static program create(const char* kernel_source);

private:

//program();
program(context_ptr context, program_ptr program);

context_ptr m_context;
Expand Down

0 comments on commit 7afa31a

Please sign in to comment.