diff options
author | Benjamin Chausse <benjamin@chausse.xyz> | 2023-01-13 19:37:56 -0500 |
---|---|---|
committer | Benjamin Chausse <benjamin@chausse.xyz> | 2023-01-13 19:37:56 -0500 |
commit | 6a20ac2049d7e9fbf827838259911bf0899f46d9 (patch) | |
tree | 4b96dfc05bbd03da1d80bd2369b339dac5041c10 /tests.h | |
parent | bd3b390064aa8dee26845dc6fcc1b5d79773a167 (diff) | |
parent | 86fbed0811fc4ef36ffb66b3f774df61eb87c24b (diff) |
Fix gitignore merge
Diffstat (limited to 'tests.h')
-rw-r--r-- | tests.h | 9 |
1 files changed, 9 insertions, 0 deletions
@@ -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 |