aboutsummaryrefslogtreecommitdiff
path: root/include/mglpp/window/Clipboard.hpp
blob: 7d5c9d49b810aa61e290a649a542bf7d2913ffa5 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
#ifndef MGLPP_CLIPBOARD_HPP
#define MGLPP_CLIPBOARD_HPP

#include <string>

namespace mgl {
    class Clipboard {
    public:
        static void set_string(std::string str);
        static std::string get_string();
    };
}

#endif /* MGLPP_CLIPBOARD_HPP */