A simple cross-platform clipboard library?

I was wondering if there was one. In fact, all I need is a way to copy and paste lines, for example, from a game into Notepad and vice versa.

thank

+5
source share
1 answer

Each application must support it. Notepad does. If you want your application to provide it, you must implement it. Fortunately, this is easy if you use the right tools.

Cross-platform programming platforms, such as Qt, typically have classes that encapsulate clipboard operations between platforms.

Qt , QClipboard, , setText() text(), . - .

+6

All Articles