Added include guards.

This commit is contained in:
tastytea 2019-01-03 08:37:00 +01:00
parent 9d784d18b1
commit 356510adc9
Signed by: tastytea
GPG Key ID: CFC39497F1B26E07
1 changed files with 6 additions and 1 deletions

View File

@ -1,5 +1,5 @@
/* This file is part of identiconpp.
* Copyright © 2018 tastytea <tastytea@tastytea.de>
* Copyright © 2018, 2019 tastytea <tastytea@tastytea.de>
*
* 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 <http://www.gnu.org/licenses/>.
*/
#ifndef IDENTICONPP_HPP
#define IDENTICONPP_HPP
#include <cstdint>
#include <string>
#include <vector>
@ -181,3 +184,5 @@ protected:
*/
void check_color(const string &color);
};
#endif // IDENTICONPP_HPP