aboutsummaryrefslogtreecommitdiff
path: root/src/tests/plugin/plugin.h
blob: f72686709ebb59ae67d7763c32c376fed7e43bd5 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
#ifndef PLUGIN_H
#define PLUGIN_H

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

private:
	
};

#endif