Skylicht Engine
Loading...
Searching...
No Matches
IClipboard.h
1#pragma once
2
3namespace Skylicht
4{
8 class IClipboard
9 {
10 public:
11 IClipboard();
12
13 virtual ~IClipboard();
14
19 virtual void copyToClipboard(const char* text) = 0;
20
25 virtual const char* getTextFromClipboard() = 0;
26 };
27
33}
The IClipboard interface provides methods for interacting with the system clipboard.
Definition IClipboard.h:9
virtual const char * getTextFromClipboard()=0
Retrieves text from the clipboard.
virtual void copyToClipboard(const char *text)=0
Copies text to the clipboard.
Everything in the Skylicht Engine. You can start by looking at the topics.
Definition AudioDebugLog.h:29
IClipboard * getOSClipboard()
Returns the platform-specific clipboard implementation.