From b35be0d8a0636602076c9c09a1cc2b3c92cb4042 Mon Sep 17 00:00:00 2001 From: Yann Herklotz Date: Thu, 27 Jul 2017 22:20:32 +0100 Subject: Added MIT License to all files --- include/YAGE/Math/math.hpp | 8 ++++++++ include/YAGE/Math/matrix.hpp | 8 ++++++++ include/YAGE/Physics/body.hpp | 8 ++++++++ include/YAGE/Physics/collider.hpp | 8 ++++++++ include/YAGE/Physics/collisionbody.hpp | 8 ++++++++ include/YAGE/Physics/particlebody.hpp | 8 ++++++++ include/YAGE/Physics/physics.hpp | 8 ++++++++ include/YAGE/Physics/rectanglecollider.hpp | 8 ++++++++ include/YAGE/Physics/rigidbody.hpp | 8 ++++++++ include/YAGE/camera2d.hpp | 8 ++++++++ include/YAGE/glslprogram.hpp | 8 ++++++++ include/YAGE/imageloader.hpp | 8 ++++++++ include/YAGE/inputmanager.hpp | 8 ++++++++ include/YAGE/iomanager.hpp | 8 ++++++++ include/YAGE/picopng.hpp | 8 ++++++++ include/YAGE/resourcemanager.hpp | 8 ++++++++ include/YAGE/sprite.hpp | 8 ++++++++ include/YAGE/spritebatch.hpp | 8 ++++++++ include/YAGE/texture.hpp | 8 ++++++++ include/YAGE/texturecache.hpp | 8 ++++++++ include/YAGE/vertex.hpp | 8 ++++++++ include/YAGE/window.hpp | 8 ++++++++ include/YAGE/yage.hpp | 8 ++++++++ src/body.cpp | 8 ++++++++ src/camera2d.cpp | 8 ++++++++ src/glslprogram.cpp | 8 ++++++++ src/imageloader.cpp | 8 ++++++++ src/inputmanager.cpp | 8 ++++++++ src/iomanager.cpp | 8 ++++++++ src/particlebody.cpp | 8 ++++++++ src/rectanglecollider.cpp | 8 ++++++++ src/resourcemanager.cpp | 8 ++++++++ src/rigidbody.cpp | 8 ++++++++ src/sprite.cpp | 8 ++++++++ src/spritebatch.cpp | 8 ++++++++ src/texturecache.cpp | 8 ++++++++ src/window.cpp | 8 ++++++++ test/matrixtest.cpp | 8 ++++++++ test/rigidbodytest.cpp | 8 ++++++++ test/testbench.cpp | 8 ++++++++ test/testbench.hpp | 8 ++++++++ 41 files changed, 328 insertions(+) diff --git a/include/YAGE/Math/math.hpp b/include/YAGE/Math/math.hpp index 201bf3cb..b587cf9f 100644 --- a/include/YAGE/Math/math.hpp +++ b/include/YAGE/Math/math.hpp @@ -1,3 +1,11 @@ +/* ---------------------------------------------------------------------------- + * math.hpp + * + * Copyright (c) 2017 Yann Herklotz Grave -- MIT License + * See file LICENSE for more details + * ---------------------------------------------------------------------------- + */ + #ifndef YAGE_MATH_HPP #define YAGE_MATH_HPP diff --git a/include/YAGE/Math/matrix.hpp b/include/YAGE/Math/matrix.hpp index 9f1b4fcd..42f5ebbc 100644 --- a/include/YAGE/Math/matrix.hpp +++ b/include/YAGE/Math/matrix.hpp @@ -1,3 +1,11 @@ +/* ---------------------------------------------------------------------------- + * matrix.hpp + * + * Copyright (c) 2017 Yann Herklotz Grave -- MIT License + * See file LICENSE for more details + * ---------------------------------------------------------------------------- + */ + #ifndef YAGE_MATH_MATRIX_HPP #define YAGE_MATH_MATRIX_HPP diff --git a/include/YAGE/Physics/body.hpp b/include/YAGE/Physics/body.hpp index 5a0e879e..49406278 100644 --- a/include/YAGE/Physics/body.hpp +++ b/include/YAGE/Physics/body.hpp @@ -1,3 +1,11 @@ +/* ---------------------------------------------------------------------------- + * body.hpp + * + * Copyright (c) 2017 Yann Herklotz Grave -- MIT License + * See file LICENSE for more details + * ---------------------------------------------------------------------------- + */ + #ifndef YAGE_BODY_HPP #define YAGE_BODY_HPP diff --git a/include/YAGE/Physics/collider.hpp b/include/YAGE/Physics/collider.hpp index 234ff57f..86b2a0c3 100644 --- a/include/YAGE/Physics/collider.hpp +++ b/include/YAGE/Physics/collider.hpp @@ -1,3 +1,11 @@ +/* ---------------------------------------------------------------------------- + * collider.hpp + * + * Copyright (c) 2017 Yann Herklotz Grave -- MIT License + * See file LICENSE for more details + * ---------------------------------------------------------------------------- + */ + #ifndef YAGE_COLLIDER_HPP #define YAGE_COLLIDER_HPP diff --git a/include/YAGE/Physics/collisionbody.hpp b/include/YAGE/Physics/collisionbody.hpp index c5f8e1f6..b7403e81 100644 --- a/include/YAGE/Physics/collisionbody.hpp +++ b/include/YAGE/Physics/collisionbody.hpp @@ -1,3 +1,11 @@ +/* ---------------------------------------------------------------------------- + * collisionbody.hpp + * + * Copyright (c) 2017 Yann Herklotz Grave -- MIT License + * See file LICENSE for more details + * ---------------------------------------------------------------------------- + */ + #ifndef YAGE_COLLISION_BODY_HPP #define YAGE_COLLISION_BODY_HPP diff --git a/include/YAGE/Physics/particlebody.hpp b/include/YAGE/Physics/particlebody.hpp index 62e6fc43..e107cb6a 100644 --- a/include/YAGE/Physics/particlebody.hpp +++ b/include/YAGE/Physics/particlebody.hpp @@ -1,3 +1,11 @@ +/* ---------------------------------------------------------------------------- + * particlebody.hpp + * + * Copyright (c) 2017 Yann Herklotz Grave -- MIT License + * See file LICENSE for more details + * ---------------------------------------------------------------------------- + */ + #ifndef YAGE_PARTICLE_BODY_HPP #define YAGE_PARTICLE_BODY_HPP diff --git a/include/YAGE/Physics/physics.hpp b/include/YAGE/Physics/physics.hpp index efcbefe4..8146672a 100644 --- a/include/YAGE/Physics/physics.hpp +++ b/include/YAGE/Physics/physics.hpp @@ -1,3 +1,11 @@ +/* ---------------------------------------------------------------------------- + * physics.hpp + * + * Copyright (c) 2017 Yann Herklotz Grave -- MIT License + * See file LICENSE for more details + * ---------------------------------------------------------------------------- + */ + #ifndef YAGE_PHYSICS_HPP #define YAGE_PHYSICS_HPP diff --git a/include/YAGE/Physics/rectanglecollider.hpp b/include/YAGE/Physics/rectanglecollider.hpp index b4762ea6..62f11100 100644 --- a/include/YAGE/Physics/rectanglecollider.hpp +++ b/include/YAGE/Physics/rectanglecollider.hpp @@ -1,3 +1,11 @@ +/* ---------------------------------------------------------------------------- + * rectanglecollider.hpp + * + * Copyright (c) 2017 Yann Herklotz Grave -- MIT License + * See file LICENSE for more details + * ---------------------------------------------------------------------------- + */ + #ifndef YAGE_RECTANGLE_COLLIDER_HPP #define YAGE_RECTANGLE_COLLIDER_HPP diff --git a/include/YAGE/Physics/rigidbody.hpp b/include/YAGE/Physics/rigidbody.hpp index 05d8d0ad..c8a2e497 100644 --- a/include/YAGE/Physics/rigidbody.hpp +++ b/include/YAGE/Physics/rigidbody.hpp @@ -1,3 +1,11 @@ +/* ---------------------------------------------------------------------------- + * rigidbody.hpp + * + * Copyright (c) 2017 Yann Herklotz Grave -- MIT License + * See file LICENSE for more details + * ---------------------------------------------------------------------------- + */ + #ifndef YAGE_RIGID_BODY_HPP #define YAGE_RIGID_BODY_HPP diff --git a/include/YAGE/camera2d.hpp b/include/YAGE/camera2d.hpp index 4c035ba3..11d8143f 100644 --- a/include/YAGE/camera2d.hpp +++ b/include/YAGE/camera2d.hpp @@ -1,3 +1,11 @@ +/* ---------------------------------------------------------------------------- + * camera2d.hpp + * + * Copyright (c) 2017 Yann Herklotz Grave -- MIT License + * See file LICENSE for more details + * ---------------------------------------------------------------------------- + */ + #ifndef CAMERA_2D_HPP #define CAMERA_2D_HPP diff --git a/include/YAGE/glslprogram.hpp b/include/YAGE/glslprogram.hpp index 3e03723a..28222ede 100644 --- a/include/YAGE/glslprogram.hpp +++ b/include/YAGE/glslprogram.hpp @@ -1,3 +1,11 @@ +/* ---------------------------------------------------------------------------- + * glslprogram.hpp + * + * Copyright (c) 2017 Yann Herklotz Grave -- MIT License + * See file LICENSE for more details + * ---------------------------------------------------------------------------- + */ + #ifndef GLSL_PROGRAM_HPP #define GLSL_PROGRAM_HPP diff --git a/include/YAGE/imageloader.hpp b/include/YAGE/imageloader.hpp index de190ea4..4c0b5a36 100644 --- a/include/YAGE/imageloader.hpp +++ b/include/YAGE/imageloader.hpp @@ -1,3 +1,11 @@ +/* ---------------------------------------------------------------------------- + * imageloader.hpp + * + * Copyright (c) 2017 Yann Herklotz Grave -- MIT License + * See file LICENSE for more details + * ---------------------------------------------------------------------------- + */ + #ifndef IMAGE_LOADER_HPP #define IMAGE_LOADER_HPP diff --git a/include/YAGE/inputmanager.hpp b/include/YAGE/inputmanager.hpp index fc9e5479..f8a0c710 100644 --- a/include/YAGE/inputmanager.hpp +++ b/include/YAGE/inputmanager.hpp @@ -1,3 +1,11 @@ +/* ---------------------------------------------------------------------------- + * inputmanager.hpp + * + * Copyright (c) 2017 Yann Herklotz Grave -- MIT License + * See file LICENSE for more details + * ---------------------------------------------------------------------------- + */ + #ifndef INPUT_MANAGER_HPP #define INPUT_MANAGER_HPP diff --git a/include/YAGE/iomanager.hpp b/include/YAGE/iomanager.hpp index a0bc22ba..4295c598 100644 --- a/include/YAGE/iomanager.hpp +++ b/include/YAGE/iomanager.hpp @@ -1,3 +1,11 @@ +/* ---------------------------------------------------------------------------- + * iomanager.hpp + * + * Copyright (c) 2017 Yann Herklotz Grave -- MIT License + * See file LICENSE for more details + * ---------------------------------------------------------------------------- + */ + #ifndef IO_MANAGER_HPP #define IO_MANAGER_HPP diff --git a/include/YAGE/picopng.hpp b/include/YAGE/picopng.hpp index 8fea4f0d..0aa6c6d4 100644 --- a/include/YAGE/picopng.hpp +++ b/include/YAGE/picopng.hpp @@ -1,3 +1,11 @@ +/* ---------------------------------------------------------------------------- + * picopng.hpp + * + * Copyright (c) 2017 Yann Herklotz Grave -- MIT License + * See file LICENSE for more details + * ---------------------------------------------------------------------------- + */ + #include #include diff --git a/include/YAGE/resourcemanager.hpp b/include/YAGE/resourcemanager.hpp index 61642caf..10f6cbb8 100644 --- a/include/YAGE/resourcemanager.hpp +++ b/include/YAGE/resourcemanager.hpp @@ -1,3 +1,11 @@ +/* ---------------------------------------------------------------------------- + * resourcemanager.hpp + * + * Copyright (c) 2017 Yann Herklotz Grave -- MIT License + * See file LICENSE for more details + * ---------------------------------------------------------------------------- + */ + #ifndef RESOURCE_MANAGER_HPP #define RESOURCE_MANAGER_HPP diff --git a/include/YAGE/sprite.hpp b/include/YAGE/sprite.hpp index fa214686..9e5aca8b 100644 --- a/include/YAGE/sprite.hpp +++ b/include/YAGE/sprite.hpp @@ -1,3 +1,11 @@ +/* ---------------------------------------------------------------------------- + * sprite.hpp + * + * Copyright (c) 2017 Yann Herklotz Grave -- MIT License + * See file LICENSE for more details + * ---------------------------------------------------------------------------- + */ + #ifndef SPRITE_HPP #define SPRITE_HPP diff --git a/include/YAGE/spritebatch.hpp b/include/YAGE/spritebatch.hpp index c5a55b17..61efd0aa 100644 --- a/include/YAGE/spritebatch.hpp +++ b/include/YAGE/spritebatch.hpp @@ -1,3 +1,11 @@ +/* ---------------------------------------------------------------------------- + * spritebatch.hpp + * + * Copyright (c) 2017 Yann Herklotz Grave -- MIT License + * See file LICENSE for more details + * ---------------------------------------------------------------------------- + */ + #ifndef SPRITE_BATCH_HPP #define SPRITE_BATCH_HPP diff --git a/include/YAGE/texture.hpp b/include/YAGE/texture.hpp index c72c80d7..34accaca 100644 --- a/include/YAGE/texture.hpp +++ b/include/YAGE/texture.hpp @@ -1,3 +1,11 @@ +/* ---------------------------------------------------------------------------- + * texture.hpp + * + * Copyright (c) 2017 Yann Herklotz Grave -- MIT License + * See file LICENSE for more details + * ---------------------------------------------------------------------------- + */ + #ifndef GL_TEXTURE_HPP #define GL_TEXTURE_HPP diff --git a/include/YAGE/texturecache.hpp b/include/YAGE/texturecache.hpp index 4969b27b..158f81ee 100644 --- a/include/YAGE/texturecache.hpp +++ b/include/YAGE/texturecache.hpp @@ -1,3 +1,11 @@ +/* ---------------------------------------------------------------------------- + * texturecache.hpp + * + * Copyright (c) 2017 Yann Herklotz Grave -- MIT License + * See file LICENSE for more details + * ---------------------------------------------------------------------------- + */ + #ifndef TEXTURE_CACHE_HPP #define TEXTURE_CACHE_HPP diff --git a/include/YAGE/vertex.hpp b/include/YAGE/vertex.hpp index bbf8a7d3..a3848490 100644 --- a/include/YAGE/vertex.hpp +++ b/include/YAGE/vertex.hpp @@ -1,3 +1,11 @@ +/* ---------------------------------------------------------------------------- + * vertex.hpp + * + * Copyright (c) 2017 Yann Herklotz Grave -- MIT License + * See file LICENSE for more details + * ---------------------------------------------------------------------------- + */ + #ifndef VERTEX_HPP #define VERTEX_HPP diff --git a/include/YAGE/window.hpp b/include/YAGE/window.hpp index d86c00ac..98ba2592 100644 --- a/include/YAGE/window.hpp +++ b/include/YAGE/window.hpp @@ -1,3 +1,11 @@ +/* ---------------------------------------------------------------------------- + * window.hpp + * + * Copyright (c) 2017 Yann Herklotz Grave -- MIT License + * See file LICENSE for more details + * ---------------------------------------------------------------------------- + */ + #ifndef WINDOW_HPP #define WINDOW_HPP diff --git a/include/YAGE/yage.hpp b/include/YAGE/yage.hpp index cec03d00..1045e12b 100644 --- a/include/YAGE/yage.hpp +++ b/include/YAGE/yage.hpp @@ -1,3 +1,11 @@ +/* ---------------------------------------------------------------------------- + * yage.hpp + * + * Copyright (c) 2017 Yann Herklotz Grave -- MIT License + * See file LICENSE for more details + * ---------------------------------------------------------------------------- + */ + #ifndef YAGE_HPP #define YAGE_HPP diff --git a/src/body.cpp b/src/body.cpp index e942d617..524a92ee 100644 --- a/src/body.cpp +++ b/src/body.cpp @@ -1,3 +1,11 @@ +/* ---------------------------------------------------------------------------- + * body.cpp + * + * Copyright (c) 2017 Yann Herklotz Grave -- MIT License + * See file LICENSE for more details + * ---------------------------------------------------------------------------- + */ + #include "Physics/body.hpp" namespace yage diff --git a/src/camera2d.cpp b/src/camera2d.cpp index 81e8d971..0b60b7c6 100644 --- a/src/camera2d.cpp +++ b/src/camera2d.cpp @@ -1,3 +1,11 @@ +/* ---------------------------------------------------------------------------- + * camera2d.cpp + * + * Copyright (c) 2017 Yann Herklotz Grave -- MIT License + * See file LICENSE for more details + * ---------------------------------------------------------------------------- + */ + #include "camera2d.hpp" #include diff --git a/src/glslprogram.cpp b/src/glslprogram.cpp index f9795a34..acb81f56 100644 --- a/src/glslprogram.cpp +++ b/src/glslprogram.cpp @@ -1,3 +1,11 @@ +/* ---------------------------------------------------------------------------- + * glslprogram.cpp + * + * Copyright (c) 2017 Yann Herklotz Grave -- MIT License + * See file LICENSE for more details + * ---------------------------------------------------------------------------- + */ + #include "glslprogram.hpp" #include diff --git a/src/imageloader.cpp b/src/imageloader.cpp index cca71844..241cf588 100644 --- a/src/imageloader.cpp +++ b/src/imageloader.cpp @@ -1,3 +1,11 @@ +/* ---------------------------------------------------------------------------- + * imageloader.cpp + * + * Copyright (c) 2017 Yann Herklotz Grave -- MIT License + * See file LICENSE for more details + * ---------------------------------------------------------------------------- + */ + #include "imageloader.hpp" #include "iomanager.hpp" #include "picopng.hpp" diff --git a/src/inputmanager.cpp b/src/inputmanager.cpp index 402cc420..c9c80d93 100644 --- a/src/inputmanager.cpp +++ b/src/inputmanager.cpp @@ -1,3 +1,11 @@ +/* ---------------------------------------------------------------------------- + * inputmanager.cpp + * + * Copyright (c) 2017 Yann Herklotz Grave -- MIT License + * See file LICENSE for more details + * ---------------------------------------------------------------------------- + */ + #include "inputmanager.hpp" namespace yage diff --git a/src/iomanager.cpp b/src/iomanager.cpp index 697273dc..bcb1dcd0 100644 --- a/src/iomanager.cpp +++ b/src/iomanager.cpp @@ -1,3 +1,11 @@ +/* ---------------------------------------------------------------------------- + * iomanager.cpp + * + * Copyright (c) 2017 Yann Herklotz Grave -- MIT License + * See file LICENSE for more details + * ---------------------------------------------------------------------------- + */ + #include "iomanager.hpp" #include diff --git a/src/particlebody.cpp b/src/particlebody.cpp index 748f80cd..a66489e9 100644 --- a/src/particlebody.cpp +++ b/src/particlebody.cpp @@ -1,3 +1,11 @@ +/* ---------------------------------------------------------------------------- + * particlebody.cpp + * + * Copyright (c) 2017 Yann Herklotz Grave -- MIT License + * See file LICENSE for more details + * ---------------------------------------------------------------------------- + */ + #include "Physics/particlebody.hpp" #include diff --git a/src/rectanglecollider.cpp b/src/rectanglecollider.cpp index 812b10d1..0f5ee302 100644 --- a/src/rectanglecollider.cpp +++ b/src/rectanglecollider.cpp @@ -1,3 +1,11 @@ +/* ---------------------------------------------------------------------------- + * rectanglecollider.cpp + * + * Copyright (c) 2017 Yann Herklotz Grave -- MIT License + * See file LICENSE for more details + * ---------------------------------------------------------------------------- + */ + #include "Physics/rectanglecollider.hpp" namespace yage diff --git a/src/resourcemanager.cpp b/src/resourcemanager.cpp index 4105f4e4..8341557c 100644 --- a/src/resourcemanager.cpp +++ b/src/resourcemanager.cpp @@ -1,3 +1,11 @@ +/* ---------------------------------------------------------------------------- + * resourcemanager.cpp + * + * Copyright (c) 2017 Yann Herklotz Grave -- MIT License + * See file LICENSE for more details + * ---------------------------------------------------------------------------- + */ + #include "resourcemanager.hpp" namespace yage diff --git a/src/rigidbody.cpp b/src/rigidbody.cpp index 62032b74..f2069c4a 100644 --- a/src/rigidbody.cpp +++ b/src/rigidbody.cpp @@ -1,3 +1,11 @@ +/* ---------------------------------------------------------------------------- + * rigidbody.cpp + * + * Copyright (c) 2017 Yann Herklotz Grave -- MIT License + * See file LICENSE for more details + * ---------------------------------------------------------------------------- + */ + #include "Physics/rigidbody.hpp" namespace yage diff --git a/src/sprite.cpp b/src/sprite.cpp index cd8f328d..2ba39e2e 100644 --- a/src/sprite.cpp +++ b/src/sprite.cpp @@ -1,3 +1,11 @@ +/* ---------------------------------------------------------------------------- + * sprite.cpp + * + * Copyright (c) 2017 Yann Herklotz Grave -- MIT License + * See file LICENSE for more details + * ---------------------------------------------------------------------------- + */ + #include "sprite.hpp" #include "resourcemanager.hpp" #include "vertex.hpp" diff --git a/src/spritebatch.cpp b/src/spritebatch.cpp index a530a0ac..4018b3e2 100644 --- a/src/spritebatch.cpp +++ b/src/spritebatch.cpp @@ -1,3 +1,11 @@ +/* ---------------------------------------------------------------------------- + * spritebatch.cpp + * + * Copyright (c) 2017 Yann Herklotz Grave -- MIT License + * See file LICENSE for more details + * ---------------------------------------------------------------------------- + */ + #include "spritebatch.hpp" #include diff --git a/src/texturecache.cpp b/src/texturecache.cpp index ca47217e..bc48c4e0 100644 --- a/src/texturecache.cpp +++ b/src/texturecache.cpp @@ -1,3 +1,11 @@ +/* ---------------------------------------------------------------------------- + * texturecache.cpp + * + * Copyright (c) 2017 Yann Herklotz Grave -- MIT License + * See file LICENSE for more details + * ---------------------------------------------------------------------------- + */ + #include "imageloader.hpp" #include "texturecache.hpp" diff --git a/src/window.cpp b/src/window.cpp index 37c3b16d..60cdb4ef 100644 --- a/src/window.cpp +++ b/src/window.cpp @@ -1,3 +1,11 @@ +/* ---------------------------------------------------------------------------- + * window.cpp + * + * Copyright (c) 2017 Yann Herklotz Grave -- MIT License + * See file LICENSE for more details + * ---------------------------------------------------------------------------- + */ + #include "window.hpp" #include diff --git a/test/matrixtest.cpp b/test/matrixtest.cpp index b24e6a89..c84118df 100644 --- a/test/matrixtest.cpp +++ b/test/matrixtest.cpp @@ -1,3 +1,11 @@ +/* ---------------------------------------------------------------------------- + * matrixtest.cpp + * + * Copyright (c) 2017 Yann Herklotz Grave -- MIT License + * See file LICENSE for more details + * ---------------------------------------------------------------------------- + */ + #include "Math/math.hpp" #include "testbench.hpp" diff --git a/test/rigidbodytest.cpp b/test/rigidbodytest.cpp index 11efd20d..f3ad61f3 100644 --- a/test/rigidbodytest.cpp +++ b/test/rigidbodytest.cpp @@ -1,3 +1,11 @@ +/* ---------------------------------------------------------------------------- + * rigidbodytest.cpp + * + * Copyright (c) 2017 Yann Herklotz Grave -- MIT License + * See file LICENSE for more details + * ---------------------------------------------------------------------------- + */ + #include "Physics/particlebody.hpp" #include diff --git a/test/testbench.cpp b/test/testbench.cpp index 42bf357f..eb09a82d 100644 --- a/test/testbench.cpp +++ b/test/testbench.cpp @@ -1,3 +1,11 @@ +/* ---------------------------------------------------------------------------- + * testbench.cpp + * + * Copyright (c) 2017 Yann Herklotz Grave -- MIT License + * See file LICENSE for more details + * ---------------------------------------------------------------------------- + */ + #include "testbench.hpp" #include diff --git a/test/testbench.hpp b/test/testbench.hpp index 574561af..a5b8853d 100644 --- a/test/testbench.hpp +++ b/test/testbench.hpp @@ -1,3 +1,11 @@ +/* ---------------------------------------------------------------------------- + * testbench.hpp + * + * Copyright (c) 2017 Yann Herklotz Grave -- MIT License + * See file LICENSE for more details + * ---------------------------------------------------------------------------- + */ + #ifndef TEST_BENCH_HPP #define TEST_BENCH_HPP -- cgit