Clone of Akilla's ac2d @ https://github.com/deregtd/AC2D

IClipboard.h 208B

12345678910111213
  1. #ifndef ICLIPBOARD_H
  2. #define ICLIPBOARD_H
  3. #include <string>
  4. class IClipboard
  5. {
  6. public:
  7. virtual const std::string &GetData() const = 0;
  8. virtual void SetData( const std::string &NewData ) = 0;
  9. };
  10. #endif