Add file and function header documentation across Services and Main files

This commit is contained in:
2026-04-08 17:21:41 +05:30
parent fcc612f081
commit def0f4022b
25 changed files with 257 additions and 53 deletions
@@ -1,3 +1,10 @@
/*
* File: AuthenticationManagementService.h
* Description: Handles authentication related operations
* Author: Trenser
* Created: 30-Mar-2026
*/
#pragma once
#include <string>
#include <map>
@@ -19,4 +26,3 @@ public:
void logout();
void changePassword(const std::string&);
};