aboutsummaryrefslogtreecommitdiff
path: root/src/targetfactory.h
blob: ee1fc2a032acd04d7f9d520512c3d1ad148fafac (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
#ifndef TARGET_FACTORY_H
#define TARGET_FACTORY_H

#include <stdint.h>

#include "bu/plugger.h"
#include "bu/singleton.h"
#include "target.h"

class TargetFactory : public Bu::Plugger<Target>, public Bu::Singleton<TargetFactory>
{
public:
	TargetFactory();
	virtual ~TargetFactory();

private:

};

#endif