19 lines
294 B
C++
19 lines
294 B
C++
#include "pfc.h"
|
|
|
|
//deprecated
|
|
|
|
/*
|
|
class NOVTABLE bsearch_callback
|
|
{
|
|
public:
|
|
virtual int test(t_size p_index) const = 0;
|
|
};
|
|
*/
|
|
|
|
namespace pfc {
|
|
|
|
bool bsearch(t_size p_count, bsearch_callback const & p_callback,t_size & p_result) {
|
|
return bsearch_inline_t(p_count,p_callback,p_result);
|
|
}
|
|
|
|
} |