template struct cvflann::BranchStruct

#include <result_set.h>

template <
    typename T,
    typename DistanceType
    >
struct BranchStruct
{
    // fields

    DistanceType mindist;
    T node;

    // construction

    BranchStruct();

    BranchStruct(
        const T& aNode,
        DistanceType dist
        );

    // methods

    bool
    operator<(const BranchStruct<T, DistanceType>& rhs) const;
};