aboutsummaryrefslogtreecommitdiff
path: root/include/mglpp/window/Clipboard.hpp
blob: caec403b3b6664fdb7e5ff15ec8b612886dfcd55 (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(const std::string &str);
        static std::string get_string();
    };
}

#endif /* MGLPP_CLIPBOARD_HPP */