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