Use hpp
This commit is contained in:
parent
0014abc9c7
commit
51943a5123
@ -8,8 +8,8 @@ add_executable(${PROJECT_NAME}
|
||||
stringutil.hpp
|
||||
stringutil.cpp
|
||||
Tui.cpp
|
||||
Tui.h
|
||||
Command.h
|
||||
Tui.hpp
|
||||
Command.hpp
|
||||
Command.cpp
|
||||
Pager.cpp
|
||||
Pager.hpp
|
||||
|
@ -6,7 +6,7 @@
|
||||
// Author: Love Billenius <lovebillenius@disroot.org>
|
||||
// License: GPL-3
|
||||
|
||||
#include "Command.h"
|
||||
#include "Command.hpp"
|
||||
|
||||
#include <iostream>
|
||||
|
||||
|
@ -6,14 +6,14 @@
|
||||
// Author: Love Billenius <lovebillenius@disroot.org>
|
||||
// License: GPL-3
|
||||
|
||||
#include "Tui.h"
|
||||
#include "Tui.hpp"
|
||||
|
||||
#include <iostream>
|
||||
#include <optional>
|
||||
#include <ostream>
|
||||
#include <utility>
|
||||
|
||||
#include "Command.h"
|
||||
#include "Command.hpp"
|
||||
#include "Pager.hpp"
|
||||
|
||||
Tui::Tui(Pager pager) : m_pager(std::move(pager)) {
|
||||
|
@ -6,7 +6,7 @@
|
||||
// Author: Love Billenius <lovebillenius@disroot.org>
|
||||
// License: GPL-3
|
||||
|
||||
#include "Tui.h"
|
||||
#include "Tui.hpp"
|
||||
|
||||
int main(int argc, char *argv[]) {
|
||||
Tui tui(Pager{});
|
||||
|
Loading…
x
Reference in New Issue
Block a user