template struct Poco::IsReference

Use this struct to determine if a template type is a reference.

#include <MetaProgramming.h>

template <typename T>
struct IsReference
{
    // enums

    enum
    {
        VALUE = 0,
    };
};