FTXUI  0.8.1
C++ functional terminal UI.
captured_mouse.hpp
Go to the documentation of this file.
1 #ifndef FTXUI_CAPTURED_MOUSE_HPP
2 #define FTXUI_CAPTURED_MOUSE_HPP
3 
4 #include <memory>
5 
6 namespace ftxui {
8  public:
9  virtual ~CapturedMouseInterface() = default;
10 };
11 using CapturedMouse = std::unique_ptr<CapturedMouseInterface>;
12 } // namespace ftxui
13 
14 #endif /* end of include guard: FTXUI_CAPTURED_MOUSE_HPP */
15 
16 // Copyright 2020 Arthur Sonzogni. All rights reserved.
17 // Use of this source code is governed by the MIT license that can be found in
18 // the LICENSE file.
ftxui
Definition: captured_mouse.hpp:6
ftxui::CapturedMouse
std::unique_ptr< CapturedMouseInterface > CapturedMouse
Definition: captured_mouse.hpp:11
ftxui::CapturedMouseInterface
Definition: captured_mouse.hpp:7
ftxui::CapturedMouseInterface::~CapturedMouseInterface
virtual ~CapturedMouseInterface()=default