Files

16 lines
298 B
C
Raw Permalink Normal View History

#ifndef GB_STATISTICS_H
#define GB_STATISTICS_H
2016-06-13 16:54:56 +02:00
namespace Statistics {
bool initialize();
void finalize();
void register_query_time(unsigned term_count, unsigned qlang, unsigned ms);
2016-07-04 11:26:37 +02:00
void register_spider_time( bool is_new, int error_code, int http_status, unsigned ms );
2016-06-13 16:54:56 +02:00
} //namespace
#endif