added guards around clipboard header

This commit is contained in:
Dave White 2004-06-18 03:49:21 +00:00
parent baf5160d31
commit dead09c41a

View File

@ -1,4 +1,9 @@
#ifndef CLIPBOARD_HPP_INCLUDED
#define CLIPBOARD_HPP_INCLUDED
#include <string> #include <string>
void copy_to_clipboard(const std::string& text); void copy_to_clipboard(const std::string& text);
std::string copy_from_clipboard(); std::string copy_from_clipboard();
#endif