mirror of
https://github.com/TTimo/GtkRadiant.git
synced 2025-01-10 20:10:56 +00:00
13 lines
350 B
C++
13 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
|