mirror of
https://github.com/RGBCube/serenity
synced 2025-05-20 16:55:08 +00:00

This was a workaround to be able to build on case-insensitive file systems where it might get confused about <string.h> vs <String.h>. Let's just not support building that way, so String.h can have an objectively nicer name. :^)
14 lines
190 B
C++
14 lines
190 B
C++
#pragma once
|
|
|
|
#include <AK/String.h>
|
|
|
|
class GClipboard {
|
|
public:
|
|
static GClipboard& the();
|
|
|
|
String data() const;
|
|
void set_data(const StringView&);
|
|
|
|
private:
|
|
GClipboard();
|
|
};
|