Files
fail/tools/import-trace/MemoryImporter.hpp
Horst Schirmeier d39a9278ff import-trace: split into public and protected iface
Change-Id: I4b7d15f9181b1485d0546a77bd8d4f400b2fa880
2013-09-10 17:37:26 +02:00

17 lines
402 B
C++

#ifndef __MEMORY_IMPORTER_H__
#define __MEMORY_IMPORTER_H__
#include "Importer.hpp"
#include "util/CommandLine.hpp"
class MemoryImporter : public Importer {
protected:
virtual bool handle_ip_event(fail::simtime_t curtime, instruction_count_t instr,
Trace_Event &ev);
virtual bool handle_mem_event(fail::simtime_t curtime, instruction_count_t instr,
Trace_Event &ev);
};
#endif