blob: 28fc2b1debc5d3ee65a21236e95f06e92bc436df (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
|
#ifndef TARGET_FILE_H
#define TARGET_FILE_H
#include <stdint.h>
#include "target.h"
class TargetFile : public Target
{
public:
TargetFile();
virtual ~TargetFile();
private:
};
#endif
|