Proper include guard

This commit is contained in:
Leonetienne
2022-05-27 03:29:51 +02:00
parent 6834ea4ad8
commit 0e47b11a2c
2 changed files with 11 additions and 2 deletions

View File

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