Pioneer
GuiISelectable.h
Go to the documentation of this file.
1 // Copyright © 2008-2021 Pioneer Developers. See AUTHORS.txt for details
2 // Licensed under the terms of the GPL v3. See licenses/GPL-3.txt
3 
4 #ifndef _GUIISELECTABLE_H
5 #define _GUIISELECTABLE_H
6 
7 #include "libs.h"
8 
9 namespace Gui {
10  class ISelectable {
11  public:
12  sigc::signal<void> onSelect;
13  virtual void SetSelected(bool) = 0;
14  };
15 } // namespace Gui
16 
17 #endif /* _GUIISELECTABLE_H */
Definition: GuiISelectable.h:10
virtual void SetSelected(bool)=0
sigc::signal< void > onSelect
Definition: GuiISelectable.h:12
Definition: Gui.cpp:10