blob: 435d9c696807858f9495cc9482f6be568469fd90 (
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 "bu/plugger.h"
#include "bu/singleton.h"
class PerformFactory : public Bu::Plugger<Perform>, public Bu::Singleton<PerformFactory>
{
public:
PerformFactory();
virtual ~PerformFactory();
private:
};
#endif
|