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