Skylicht Engine
Toggle main menu visibility
Loading...
Searching...
No Matches
Clipboard
IClipboard.h
1
#pragma once
2
3
namespace
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
32
IClipboard
*
getOSClipboard
();
33
}
Skylicht::IClipboard
The IClipboard interface provides methods for interacting with the system clipboard.
Definition
IClipboard.h:9
Skylicht::IClipboard::getTextFromClipboard
virtual const char * getTextFromClipboard()=0
Retrieves text from the clipboard.
Skylicht::IClipboard::copyToClipboard
virtual void copyToClipboard(const char *text)=0
Copies text to the clipboard.
Skylicht
Everything in the Skylicht Engine. You can start by looking at the topics.
Definition
AudioDebugLog.h:29
Skylicht::getOSClipboard
IClipboard * getOSClipboard()
Returns the platform-specific clipboard implementation.
Generated by
1.17.0