mirror of
https://github.com/aseprite/aseprite.git
synced 2025-03-29 10:20:48 +00:00
22 lines
418 B
C++
22 lines
418 B
C++
// Aseprite UI Library
|
|
// Copyright (C) 2001-2013 David Capello
|
|
//
|
|
// This source file is distributed under MIT license,
|
|
// please read LICENSE.txt for more information.
|
|
|
|
#ifndef UI_CLIPBOARD_H_INCLUDED
|
|
#define UI_CLIPBOARD_H_INCLUDED
|
|
|
|
#include "ui/base.h"
|
|
|
|
namespace ui {
|
|
namespace clipboard {
|
|
|
|
const char* get_text();
|
|
void set_text(const char* text);
|
|
|
|
} // namespace clipboard
|
|
} // namespace ui
|
|
|
|
#endif
|