mirror of
https://github.com/TTimo/GtkRadiant.git
synced 2025-01-11 04:21:08 +00:00
14 lines
350 B
C
14 lines
350 B
C
|
|
||
|
#if !defined(INCLUDED_GTKUTIL_CLIPBOARD_H)
|
||
|
#define INCLUDED_GTKUTIL_CLIPBOARD_H
|
||
|
|
||
|
class TextOutputStream;
|
||
|
typedef void(*ClipboardCopyFunc)(TextOutputStream&);
|
||
|
void clipboard_copy(ClipboardCopyFunc copy);
|
||
|
|
||
|
class TextInputStream;
|
||
|
typedef void(*ClipboardPasteFunc)(TextInputStream&);
|
||
|
void clipboard_paste(ClipboardPasteFunc paste);
|
||
|
|
||
|
#endif
|