mirror of
https://github.com/SerenityOS/serenity.git
synced 2025-01-23 18:02:05 -05:00
14 lines
188 B
C++
14 lines
188 B
C++
#pragma once
|
|
|
|
#include <AK/AKString.h>
|
|
|
|
class GClipboard {
|
|
public:
|
|
static GClipboard& the();
|
|
|
|
String data() const;
|
|
void set_data(const String&);
|
|
|
|
private:
|
|
GClipboard();
|
|
};
|