a925fe63fb
<SRS> SRS01 : Authentication </SRS> <Changes> - Set up DataStore singleton and added basic employee + log storage - Added LogService - Refactor InputHelper - Updated include paths in project config </Changes> <Review> Smitha Mohan </Review>
9 lines
99 B
C++
9 lines
99 B
C++
#pragma once
|
|
#include "Log.h"
|
|
|
|
class LogService
|
|
{
|
|
public:
|
|
static void log(const std::string&);
|
|
};
|