Added Include Guards

This commit is contained in:
Tina_Azure
2023-05-01 22:39:14 +02:00
parent a7e1fbb5f5
commit 7f384214f5
4 changed files with 27 additions and 5 deletions

View File

@ -1,3 +1,6 @@
#ifndef EMAIL_TEMPLATE_COLLECTION_CPP
#define EMAIL_TEMPLATE_COLLECTION_CPP
#include <string>
namespace EmailTemplateCollection {
@ -15,4 +18,5 @@ namespace EmailTemplateCollection {
emailContent += "If you haven't requested this PasswordReset please ignore this email";
return emailContent;
}
}
}
#endif