summaryrefslogtreecommitdiff
path: root/source/modules/asura-core/input/clipboard.h
blob: b3b9a1a7bf2826bca6ed1672bdeb354570c637f6 (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
27
28
29
30
31
32
33
34
35
36
37
#ifndef __ASURA_ENGINE_CLIPBOARD_H__
#define __ASURA_ENGINE_CLIPBOARD_H__

#include "Text/String.hpp"
#include "InputDevice.hpp"

namespace AsuraEngine
{
	namespace Input
	{

		class Clipboard ASURA_FINAL : public InputDevice<Clipboard>
		{
		public:

			Clipboard();
			
			Text::String GetString();

			void SetString(const Text::String& text);

			//----------------------------------------------------------------------------//

			LUAX_DECL_SINGLETON(Clipboard);

			//----------------------------------------------------------------------------//

		private: 

			~Clipboard();

		};

	};
}

#endif