#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
|
1.2.8.1 written by Dimitri van Heesch,
© 1997-2001