summaryrefslogtreecommitdiff
path: root/inst_loader.h
blob: c668a7ee26198e5e530d14717a2a7cae04cdba48 (plain)
1
2
3
4
5
6
7
8
9
10
11
12

#ifndef INST_LOADER_H_
#define INST_LOADER_H_

#include "instruction.h"

class inst_loader {
public:
	virtual std::vector<instruction *> * load() = 0;
};

#endif //INST_LOADER_H_