add include guard

This commit is contained in:
CaCO3
2022-09-18 22:14:21 +02:00
parent 81e06c45d3
commit 906915e058

View File

@@ -1,3 +1,6 @@
#ifndef _VERSION_H
#define _VERSION_H
// These variables are autogenerated and compiled // These variables are autogenerated and compiled
// into the library by the version.cmake script // into the library by the version.cmake script
extern "C" extern "C"
@@ -13,6 +16,7 @@ extern "C"
#include "Helper.h" #include "Helper.h"
#include <fstream> #include <fstream>
// todo remove
const char* GIT_BASE_BRANCH = "master - v11.3.0 - 2022-09-16"; const char* GIT_BASE_BRANCH = "master - v11.3.0 - 2022-09-16";
@@ -57,4 +61,6 @@ const char* getHTMLversion(void){
fclose(pFile); fclose(pFile);
return _char_getHTMLversion; return _char_getHTMLversion;
} }
#endif // _VERSION_H