summaryrefslogtreecommitdiff
path: root/Runtime/Utilities/CopyPaste.h
diff options
context:
space:
mode:
Diffstat (limited to 'Runtime/Utilities/CopyPaste.h')
-rw-r--r--Runtime/Utilities/CopyPaste.h10
1 files changed, 10 insertions, 0 deletions
diff --git a/Runtime/Utilities/CopyPaste.h b/Runtime/Utilities/CopyPaste.h
new file mode 100644
index 0000000..8c9e299
--- /dev/null
+++ b/Runtime/Utilities/CopyPaste.h
@@ -0,0 +1,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