2014-01-10 12:09:19 +02:00
|
|
|
#ifndef _library__memorywatch_null__hpp__included__
|
|
|
|
#define _library__memorywatch_null__hpp__included__
|
|
|
|
|
|
|
|
#include "memorywatch.hpp"
|
|
|
|
#include <string>
|
|
|
|
#include <functional>
|
|
|
|
|
2014-05-14 10:50:49 +03:00
|
|
|
namespace memorywatch
|
2014-01-10 12:09:19 +02:00
|
|
|
{
|
2014-05-14 10:50:49 +03:00
|
|
|
struct output_null : public item_printer
|
|
|
|
{
|
|
|
|
output_null();
|
|
|
|
~output_null();
|
2014-01-10 12:09:19 +02:00
|
|
|
void show(const std::string& iname, const std::string& val);
|
|
|
|
void reset();
|
|
|
|
};
|
2014-05-14 10:50:49 +03:00
|
|
|
}
|
2014-01-10 12:09:19 +02:00
|
|
|
|
|
|
|
#endif
|