summaryrefslogtreecommitdiffstats
path: root/test
diff options
context:
space:
mode:
authorNao Pross <naopross@thearcway.org>2019-01-25 01:29:32 +0100
committerNao Pross <naopross@thearcway.org>2019-01-25 01:29:32 +0100
commitcf80d997e87005d749a5941ad5e6ae34ab53246a (patch)
treea6f404fbc2540cf9d8586dcc7e78e0305b30b3d3 /test
parentRename everything under engine/ to remove `flat' and be `.hpp' (diff)
downloadflatland-cf80d997e87005d749a5941ad5e6ae34ab53246a.tar.gz
flatland-cf80d997e87005d749a5941ad5e6ae34ab53246a.zip
Fix all header names in #include statements
Diffstat (limited to 'test')
-rw-r--r--test/main.cpp10
-rw-r--r--test/test1.cpp4
-rw-r--r--test/test2.cpp6
-rw-r--r--test/test3.cpp10
4 files changed, 15 insertions, 15 deletions
diff --git a/test/main.cpp b/test/main.cpp
index 0edd682..570bced 100644
--- a/test/main.cpp
+++ b/test/main.cpp
@@ -1,14 +1,14 @@
-#include "flatland.h"
-#include "flatwindow.h"
-#include "exceptions/forcequit.h"
+#include "flatland.hpp"
+#include "window.hpp"
+#include "exceptions/forcequit.hpp"
-#include "serial/keyfocusable.h"
+#include "serial/keyfocusable.hpp"
#include <SDL2/SDL.h>
#include <iostream>
#include <string>
-#include "flatsignal.h"
+#include "core/signal.hpp"
using namespace std;
diff --git a/test/test1.cpp b/test/test1.cpp
index 4d7c71f..847e1ab 100644
--- a/test/test1.cpp
+++ b/test/test1.cpp
@@ -1,5 +1,5 @@
-#include "flatland.h"
-#include "flatwindow.h"
+#include "flatland.hpp"
+#include "window.hpp"
int count = 0;
diff --git a/test/test2.cpp b/test/test2.cpp
index 2b16838..ca14ac7 100644
--- a/test/test2.cpp
+++ b/test/test2.cpp
@@ -1,6 +1,6 @@
-#include "flatland.h"
-#include "flatwindow.h"
-#include "exceptions/forcequit.h"
+#include "flatland.hpp"
+#include "window.hpp"
+#include "exceptions/forcequit.hpp"
int count = 0;
diff --git a/test/test3.cpp b/test/test3.cpp
index 0edd682..570bced 100644
--- a/test/test3.cpp
+++ b/test/test3.cpp
@@ -1,14 +1,14 @@
-#include "flatland.h"
-#include "flatwindow.h"
-#include "exceptions/forcequit.h"
+#include "flatland.hpp"
+#include "window.hpp"
+#include "exceptions/forcequit.hpp"
-#include "serial/keyfocusable.h"
+#include "serial/keyfocusable.hpp"
#include <SDL2/SDL.h>
#include <iostream>
#include <string>
-#include "flatsignal.h"
+#include "core/signal.hpp"
using namespace std;