https://github.com/kid0h/clipboard
A simple header-only wrapper around Windows' clipboard API
https://github.com/kid0h/clipboard
clipboard cpp header-only
Last synced: 18 days ago
JSON representation
A simple header-only wrapper around Windows' clipboard API
- Host: GitHub
- URL: https://github.com/kid0h/clipboard
- Owner: Kid0h
- Created: 2022-01-27T22:01:50.000Z (over 4 years ago)
- Default Branch: master
- Last Pushed: 2022-01-27T22:46:38.000Z (over 4 years ago)
- Last Synced: 2025-03-02T10:13:37.584Z (over 1 year ago)
- Topics: clipboard, cpp, header-only
- Language: C++
- Homepage:
- Size: 1000 Bytes
- Stars: 1
- Watchers: 1
- Forks: 1
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
Awesome Lists containing this project
README
# Clipboard 📋
## A tiny wrapper around Windows' clipboard API
**Clipboard** is a tiny C++-style header-only wrapper class built upon Windows' clipboard API.
## Features
- Get clipboard's contents
- Set clipboard's contents
> Note: this wrapper currently support Windows only.
## Getting started
To get the **clipboard** wrapper inside your project you'll just need to clone the repo & add the `include` folder in your project's includes.
Repository cloning:
```sh
git clone https://github.com/Kid0h/clipboard.git
```
Here's just an *example* of including the wrapper in a [CMake](https://cmake.org/) project:
```cmake
target_include_directories(${CMAKE_PROJECT_NAME} PRIVATE "clipboard/include")
```
## License
None, you can do whatever you want with it, I guess.