X-Git-Url: https://fleuret.org/cgi-bin/gitweb/gitweb.cgi?p=folded-ctf.git;a=blobdiff_plain;f=chrono.h;fp=chrono.h;h=0000000000000000000000000000000000000000;hp=ef11ce842d51c0dd260906f1d7b00b630edf9d84;hb=a44d56305517dddd36027c2a84693f2785fd019a;hpb=346c6fdc3c36ca10142234cce291031064fa2b48 diff --git a/chrono.h b/chrono.h deleted file mode 100644 index ef11ce8..0000000 --- a/chrono.h +++ /dev/null @@ -1,41 +0,0 @@ - -/////////////////////////////////////////////////////////////////////////// -// This program is free software: you can redistribute it and/or modify // -// it under the terms of the version 3 of the GNU General Public License // -// as published by the Free Software Foundation. // -// // -// This program is distributed in the hope that it will be useful, but // -// WITHOUT ANY WARRANTY; without even the implied warranty of // -// MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU // -// General Public License for more details. // -// // -// You should have received a copy of the GNU General Public License // -// along with this program. If not, see . // -// // -// Written by Francois Fleuret // -// (C) Idiap Research Institute // -// // -// Contact for comments & bug reports // -/////////////////////////////////////////////////////////////////////////// - -#ifndef CHRONO_H -#define CHRONO_H - -#include -#include "misc.h" - -class Chrono { - struct tms _last; - scalar_t _nb_ticks_per_second; - static const int _nb_max = 32; - int _nb, _current; - char _labels[_nb_max][buffer_size]; - scalar_t _durations[_nb_max]; -public: - Chrono(); - void print(ostream *os); - void start(const char *label); - void stop(); -}; - -#endif