Proper include guard

This commit is contained in:
Leonetienne 2022-05-27 03:29:51 +02:00
parent 6834ea4ad8
commit 0e47b11a2c
No known key found for this signature in database
GPG Key ID: C33879CD92E9708C
2 changed files with 11 additions and 2 deletions

View File

@ -1,4 +1,6 @@
#pragma once #ifndef GCRYPTCLI_BASES_H
#define GCRYPTCLI_BASES_H
#include <vector> #include <vector>
#include <string> #include <string>
#include <map> #include <map>
@ -136,3 +138,6 @@ static const std::vector<std::string> BASE_UGH = {
"Bah!", "Bah!",
"Wha-?" "Wha-?"
}; };
#endif

View File

@ -1,4 +1,6 @@
#pragma once #ifndef GCRYPTCLI_CLIINTERFACE_H
#define GCRYPTCLI_CLIINTERFACE_H
#include <Hazelnupp/CmdArgsInterface.h> #include <Hazelnupp/CmdArgsInterface.h>
class CommandlineInterface class CommandlineInterface
@ -19,3 +21,5 @@ private:
static Hazelnp::CmdArgsInterface nupp; static Hazelnp::CmdArgsInterface nupp;
}; };
#endif