#include <dbl_sort.h>
Inheritance diagram for dbl_sort::
Protected Methods | |
int | compare (double a, double b) |
|
Definition at line 11 of file dbl_sort.h. 00012 { 00013 int rslt = 0; 00014 00015 if (a < b) 00016 rslt = -1; 00017 else if (a > b) 00018 rslt = 1; 00019 00020 return rslt; 00021 } // compare |