template class axl::sl::CompareBoxListEntry

#include <axl_sl_BoxList.h>

template <
    typename T,
    typename Compare
    >
class CompareBoxListEntry
{
public:
    // construction

    CompareBoxListEntry(Compare compare);

    // methods

    bool
    operator()(
        const BoxListEntry<T>& entry1,
        const BoxListEntry<T>& entry2
        ) const;

    bool
    operator()(
        const BoxListEntry<T>* entry1,
        const BoxListEntry<T>* entry2
        ) const;
};