class cv::ocl::PlatformInfo

#include <ocl.hpp>

class PlatformInfo
{
public:
    // construction

    PlatformInfo();
    PlatformInfo(void* id);
    PlatformInfo(const PlatformInfo& i);

    // methods

    int
    deviceNumber() const;

    void
    getDevice(
        Device& device,
        int d
        ) const;

    String
    name() const;

    PlatformInfo&
    operator=(const PlatformInfo& i);

    String
    vendor() const;

    String
    version() const;

protected:
    // fields

    Impl* p;
};