]> git.lyx.org Git - lyx.git/blob - src/frontends/qt4/GuiClipboard.h
* MSVC Compilation fix: #warning is not supported.
[lyx.git] / src / frontends / qt4 / GuiClipboard.h
1 // -*- C++ -*-
2 /**
3  * \file GuiClipboard.h
4  * This file is part of LyX, the document processor.
5  * Licence details can be found in the file COPYING.
6  *
7  * \author unknown
8  * \author John Levon
9  * \author Abdelrazak Younes
10  *
11  * Full author contact details are available in file CREDITS.
12  */
13
14 #ifndef CLIPBOARD_H
15 #define CLIPBOARD_H
16
17 #include "frontends/Clipboard.h"
18
19 namespace lyx {
20 namespace frontend {
21
22 /**
23  * The Qt4 version of the Clipboard.
24  */
25 class GuiClipboard: public Clipboard
26 {
27 public:
28         GuiClipboard() {}
29
30         virtual ~GuiClipboard() {}
31
32         /** ClipBoard overloaded methods
33          */
34         //@{
35         void haveSelection(bool own);
36         std::string const get() const;
37         void put(std::string const & str);
38         //@}
39 };
40
41 } // namespace frontend
42 } // namespace lyx
43
44 #endif // CLIPBOARD_H