From 356510adc9b3b902e7a4d162d69e95f1b207a0ed Mon Sep 17 00:00:00 2001 From: tastytea Date: Thu, 3 Jan 2019 08:37:00 +0100 Subject: [PATCH] Added include guards. --- src/identiconpp.hpp | 7 ++++++- 1 file changed, 6 insertions(+), 1 deletion(-) diff --git a/src/identiconpp.hpp b/src/identiconpp.hpp index 507a84a..8170234 100644 --- a/src/identiconpp.hpp +++ b/src/identiconpp.hpp @@ -1,5 +1,5 @@ /* This file is part of identiconpp. - * Copyright © 2018 tastytea + * Copyright © 2018, 2019 tastytea * * This program is free software: you can redistribute it and/or modify * it under the terms of the GNU General Public License as published by @@ -14,6 +14,9 @@ * along with this program. If not, see . */ +#ifndef IDENTICONPP_HPP +#define IDENTICONPP_HPP + #include #include #include @@ -181,3 +184,5 @@ protected: */ void check_color(const string &color); }; + +#endif // IDENTICONPP_HPP