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

#include <stdint.h>

#include "perform.h"
#include "plugger.h"
#include "singleton.h"

class PerformFactory : public Plugger<Perform>, public Singleton<PerformFactory>
{
public:
	PerformFactory();
	virtual ~PerformFactory();

private:

};

#endif