lsnes/include/library/memorywatch-null.hpp

20 lines
363 B
C++
Raw Normal View History

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>
namespace memorywatch
2014-01-10 12:09:19 +02: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-01-10 12:09:19 +02:00
#endif