template class axl::sl::CmpDuckType

#include <axl_sl_Cmp.h>

template <
    typename T,
    typename Arg = typename ArgType<T>::Type
    >
class CmpDuckType
{
public:
    // methods

    int
    operator()(
        Arg a,
        Arg b
        ) const;

    int
    operator()(
        const T* a,
        const T* b
        ) const;
};