template struct cv::cudev::ConstantPtr

#include <constant.hpp>

template <typename T>
struct ConstantPtr
{
    // typedefs

    typedef int index_type;
    typedef T value_type;

    // fields

    T value;

    // methods

    __device__ __forceinline__ T
    operator()(
        int,
        int
        ) const;
};

// direct descendants

template <typename T>
struct ConstantPtrSz;