summaryrefslogtreecommitdiff
path: root/Runtime/Utilities/CopyPaste.h
blob: 8c9e29941d9a8f50eb94760de10e21fdd18017ad (plain)
1
2
3
4
5
6
7
8
9
10
#ifndef COPYPASTE_H
#define COPYPASTE_H

/// Get the system-wide copy buffer for pasting into a textfield
std::string GetCopyBuffer ();

/// Set the system-wide copybuffer for pasting from a textfield
void SetCopyBuffer (const std::string &utf8string);

#endif