GraphChi  0.1
 All Classes Namespaces Files Functions Variables Typedefs Enumerations Macros
null_reporter.hpp
Go to the documentation of this file.
1 
28 #ifndef GRAPHLAB_NULL_REPORTER
29 #define GRAPHLAB_NULL_REPORTER
30 
31 #include "metrics/metrics.hpp"
32 
38 namespace graphchi {
39 
40  class null_reporter : public imetrics_reporter {
41 
42  public:
43  virtual ~null_reporter();
44  virtual void do_report(std::string name, std::string ident, std::map<std::string, metrics_entry> & entries) {
45  }
46 
47  };
48 
49 }
50 
51 
52 
53 #endif
54