summaryrefslogtreecommitdiff
path: root/tests.h
diff options
context:
space:
mode:
authorBenjamin Chausse <benjamin@chausse.xyz>2023-01-13 19:37:56 -0500
committerBenjamin Chausse <benjamin@chausse.xyz>2023-01-13 19:37:56 -0500
commit6a20ac2049d7e9fbf827838259911bf0899f46d9 (patch)
tree4b96dfc05bbd03da1d80bd2369b339dac5041c10 /tests.h
parentbd3b390064aa8dee26845dc6fcc1b5d79773a167 (diff)
parent86fbed0811fc4ef36ffb66b3f774df61eb87c24b (diff)
Fix gitignore merge
Diffstat (limited to 'tests.h')
-rw-r--r--tests.h9
1 files changed, 9 insertions, 0 deletions
diff --git a/tests.h b/tests.h
index 3397fb9..73aaaad 100644
--- a/tests.h
+++ b/tests.h
@@ -7,8 +7,15 @@
* fait partie de la distribution de Graphicus.
********/
+#ifndef __TESTS_H__
+#define __TESTS_H__
+
#include <iostream>
#include "canevas.h"
+#include "forme.h"
+#include "rectangle.h"
+#include "carre.h"
+#include "cercle.h"
using namespace std;
@@ -26,3 +33,5 @@ public:
void tests_application_cas_02();
void tests_application(); // Appel de tous les tests applicatifs
};
+
+#endif