FTXUI  3.0.0
C++ functional terminal UI.
Loading...
Searching...
No Matches
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
6namespace ftxui {
8 public:
9 virtual ~CapturedMouseInterface() = default;
10};
11using 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.
virtual ~CapturedMouseInterface()=default
std::unique_ptr< CapturedMouseInterface > CapturedMouse