summaryrefslogtreecommitdiff
path: root/tests/modules/libcommon/Common.hpp
blob: 22ca5a27d6130548ea0adef10213c2002b9ccd5d (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
#ifndef __COMMON_H
#define __COMMON_H

#include "Singleton.hpp"
#include "CommonExportable.hpp"

#include <string>

using namespace std;

class Common : public Singleton< Common >
{
	public:
		DECLARE_SINGLETON( Common )

	public:
		Common( );
		virtual ~Common( );
		void setName( string name );
		void print( string s );

	private:
		string m_name;
};

#endif