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

#include <stdint.h>

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

class ViewerFactory : public Bu::Plugger<Viewer>, public Bu::Singleton<ViewerFactory>
{
public:
	ViewerFactory();
	virtual ~ViewerFactory();

private:

};

#endif