Lines Matching refs:Wrapper
58 * The OpenCL C++ Wrapper API 1.1 (revision 04)
1090 class Wrapper
1099 Wrapper() : object_(NULL) { }
1101 ~Wrapper()
1106 Wrapper(const Wrapper<cl_type>& rhs)
1112 Wrapper<cl_type>& operator = (const Wrapper<cl_type>& rhs)
1183 class Device : public detail::Wrapper<cl_device_id>
1188 Device() : detail::Wrapper<cl_type>() { }
1190 Device(const Device& device) : detail::Wrapper<cl_type>(device) { }
1195 detail::Wrapper<cl_type>::operator=(rhs);
1258 class Platform : public detail::Wrapper<cl_platform_id>
1265 Platform() : detail::Wrapper<cl_type>() { }
1267 Platform(const Platform& platform) : detail::Wrapper<cl_type>(platform) { }
1272 detail::Wrapper<cl_type>::operator=(rhs);
1417 class Context : public detail::Wrapper<cl_context>
1464 Context() : detail::Wrapper<cl_type>() { }
1466 Context(const Context& context) : detail::Wrapper<cl_type>(context) { }
1471 detail::Wrapper<cl_type>::operator=(rhs);
1537 class Event : public detail::Wrapper<cl_event>
1540 Event() : detail::Wrapper<cl_type>() { }
1542 Event(const Event& event) : detail::Wrapper<cl_type>(event) { }
1547 detail::Wrapper<cl_type>::operator=(rhs);
1684 class Memory : public detail::Wrapper<cl_mem>
1687 Memory() : detail::Wrapper<cl_type>() { }
1689 Memory(const Memory& memory) : detail::Wrapper<cl_type>(memory) { }
1694 detail::Wrapper<cl_type>::operator=(rhs);
2144 class Sampler : public detail::Wrapper<cl_sampler>
2170 Sampler(const Sampler& sampler) : detail::Wrapper<cl_type>(sampler) { }
2175 detail::Wrapper<cl_type>::operator=(rhs);
2289 class Kernel : public detail::Wrapper<cl_kernel>
2296 Kernel(const Kernel& kernel) : detail::Wrapper<cl_type>(kernel) { }
2301 detail::Wrapper<cl_type>::operator=(rhs);
2386 class Program : public detail::Wrapper<cl_program>
2449 Program(const Program& program) : detail::Wrapper<cl_type>(program) { }
2454 detail::Wrapper<cl_type>::operator=(rhs);
2559 class CommandQueue : public detail::Wrapper<cl_command_queue>
2580 CommandQueue(const CommandQueue& commandQueue) : detail::Wrapper<cl_type>(commandQueue) { }
2585 detail::Wrapper<cl_type>::operator=(rhs);