mirror of
https://github.com/SerenityOS/serenity
synced 2026-05-14 10:56:35 +02:00
15 lines
188 B
C++
15 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();
|
|
};
|