struct Poco::NullTypeList

#include <TypeList.h>

struct NullTypeList
{
    // enums

    enum
    {
        length = 0,
    };

    // methods

    bool
    operator==(const NullTypeList&) const;

    bool
    operator!=(const NullTypeList&) const;

    bool
    operator<(const NullTypeList&) const;
};