Is now very similar to normal importer, and may be deleted in the future, but at the moment, this should be merged, since it is the importer used in the sobres-2013 paper. This changes the MySQL Schema. instr1_absolute was introduced. Change-Id: I1bc2919bd14c335beca6d586b7cc0f80767ad7d5
15 lines
338 B
C++
15 lines
338 B
C++
#ifndef __BASIC_IMPORTER_H__
|
|
#define __BASIC_IMPORTER_H__
|
|
|
|
#include "Importer.hpp"
|
|
#include "util/CommandLine.hpp"
|
|
|
|
class BasicImporter : public Importer {
|
|
public:
|
|
virtual bool create_database();
|
|
virtual bool add_trace_event(margin_info_t &begin, margin_info_t &end,
|
|
const Trace_Event &event, bool is_fake = false);
|
|
};
|
|
|
|
#endif
|