aboutsummaryrefslogtreecommitdiff
path: root/src/viewer.h
blob: 04f4ea7276a3ed5c44e58521449023d0e439325c (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
#ifndef VIEWER_H
#define VIEWER_H

#include <stdint.h>


class Viewer
{
public:
	Viewer();
	virtual ~Viewer();

private:

};

#endif