tof.cpp 252 B

12345678910111213141516
  1. #include <stdio.h>
  2. #include "htree.h"
  3. int main (const int argc, char *const argv[])
  4. {
  5. if (argc !=2) {
  6. puts("Please provide a single file name for input data!");
  7. return 1;
  8. }
  9. htree t(argv[1]);
  10. t.Loop();
  11. return 0;
  12. }