00001
00005
00006 #include "dyn.h"
00007
00008 #ifdef TOOLBOX
00009
00010 main(int argc, char ** argv)
00011 {
00012 check_help();
00013
00014 dyn *b = NULL;
00015 int count = 0;
00016
00017 while (b = get_dyn(cin)) {
00018
00019 cerr << "snap " << ++count;
00020 real time = getrq(b->get_dyn_story(),"t");
00021
00022 if (time > -VERY_LARGE_NUMBER)
00023
00024 cerr << " time = " << time << endl;
00025
00026 else
00027
00028 cerr << " time unknown" << endl;
00029
00030 rmtree(b);
00031 }
00032 }
00033
00034 #endif