FTXUI/src/ftxui/screen/terminal.hpp
2020-04-19 21:01:09 +02:00

23 lines
437 B
C++

// Copyright 2020 Arthur Sonzogni. All rights reserved.
// Use of this source code is governed by the MIT license that can be found in
// the LICENSE file.
#ifndef FTXUI_CORE_TERMINAL_HPP
#define FTXUI_CORE_TERMINAL_HPP
namespace ftxui {
class Terminal {
public:
struct Dimensions {
int dimx;
int dimy;
};
static Dimensions Size();
};
} // namespace ftxui
#endif /* end of include guard: FTXUI_CORE_TERMINAL_HPP */