Refactor directory structure.

The goal is to increase the separation in between:

 * ftxui::screen
 * ftxui::dom
 * ftxui::component
This commit is contained in:
Arthur Sonzogni
2019-01-06 17:10:35 +01:00
parent 1d29645cf5
commit 5887114793
70 changed files with 324 additions and 361 deletions

View File

@@ -4,8 +4,7 @@
#include "ftxui/component/component.hpp"
#include <functional>
namespace ftxui {
namespace component {
namespace ftxui::component {
class Input : public Component {
public:
@@ -29,7 +28,6 @@ class Input : public Component {
int cursor_position = 0;
};
} // namespace component
} // namespace ftxui
} // namespace ftxui::component
#endif /* end of include guard: FTXUI_COMPONENT_INPUT_H_ */