blob: dec491b8dd9c3cdd7e39e608d20115fd2f78442f (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
|
#pragma once
#include <AK/String.h>
class GClipboard {
public:
static GClipboard& the();
String data() const;
void set_data(const StringView&);
private:
GClipboard();
};
|