// -*- C++ -*- /** * \file qt4/GuiSelection.h * This file is part of LyX, the document processor. * Licence details can be found in the file COPYING. * * \author unknown * \author John Levon * \author Abdelrazak Younes * * Full author contact details are available in file CREDITS. */ #ifndef SELECTION_H #define SELECTION_H #include "frontends/Selection.h" namespace lyx { namespace frontend { /** * The Qt4 version of the Selection. */ class GuiSelection: public Selection { public: virtual ~GuiSelection() {} /** Selection overloaded methods */ //@{ void haveSelection(bool own); std::string const get() const; void put(std::string const & str); //@} }; } // namespace frontend } // namespace lyx #endif // SELECTION_H