aboutsummaryrefslogtreecommitdiff
path: root/src/window/Clipboard.cpp
blob: b5b156e73ee293c602c4993718177a6237727b21 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
#include "../../include/mglpp/window/Clipboard.hpp"

namespace mgl {
    // TODO: Implement
    // static
    void Clipboard::set_string(std::string str) {

    }

    // TODO: Implement
    // static
    std::string Clipboard::get_string() {
        return "";
    }
}