template struct Poco::IsConst<const T&>

#include <MetaProgramming.h>

template <typename T>
struct IsConst<const T&>
{
    // enums

    enum
    {
        VALUE = 1,
    };
};