template struct Poco::Tuple<T0, NullTypeList>

#include <Tuple.h>

template <class T0>
struct Tuple<T0, NullTypeList>
{
    // typedefs

    typedef TypeList<T0, NullTypeList> Type;

    // enums

    enum TupleLengthType;

    // construction

    Tuple();
    Tuple(typename TypeWrapper<T0>::CONSTTYPE& t0);

    // methods

    template <int N>
    TypeGetter<N, Type>::ConstHeadType&
    get() const;

    template <int N>
    TypeGetter<N, Type>::HeadType&
    get();

    template <int N>
    void
    set(typename TypeGetter<N, Type>::ConstHeadType& val);

    bool
    operator==(const Tuple& other) const;

    bool
    operator!=(const Tuple& other) const;

    bool
    operator<(const Tuple& other) const;
};