Add clipboard.cc for linux (unimplemented)
This commit is contained in:
5
src/app/core/platform/clipboard.cc
Normal file
5
src/app/core/platform/clipboard.cc
Normal file
@@ -0,0 +1,5 @@
|
||||
#include "app/core/platform/clipboard.h"
|
||||
|
||||
void CopyImageToClipboard(const std::vector<uint8_t>& data) {}
|
||||
void GetImageFromClipboard(std::vector<uint8_t>& data, int& width,
|
||||
int& height) {}
|
||||
@@ -17,15 +17,8 @@ void GetImageFromClipboard(std::vector<uint8_t>& data, int& width, int& height);
|
||||
|
||||
#include <vector>
|
||||
|
||||
void CopyImageToClipboard(const std::vector<uint8_t>& data) {
|
||||
std::cout << "CopyImageToClipboard() is not implemented on Linux."
|
||||
<< std::endl;
|
||||
}
|
||||
void GetImageFromClipboard(std::vector<uint8_t>& data, int& width,
|
||||
int& height) {
|
||||
std::cout << "GetImageFromClipboard() is not implemented on Linux."
|
||||
<< std::endl;
|
||||
}
|
||||
void CopyImageToClipboard(const std::vector<uint8_t>& data);
|
||||
void GetImageFromClipboard(std::vector<uint8_t>& data, int& width, int& height);
|
||||
|
||||
#endif
|
||||
|
||||
|
||||
Reference in New Issue
Block a user