prog.cpp:1:9: warning: #pragma once in main file
#pragma once
^
prog.cpp:5:23: error: expected ')' before 'sName'
Employee(std::string sName, std::string sYMD, int iYears, int iSalary);
^
prog.cpp:8:7: error: 'string' in namespace 'std' does not name a type
std::string m_sName;
^
prog.cpp:9:7: error: 'string' in namespace 'std' does not name a type
std::string m_sBirthday;
^
prog.cpp:14:20: error: 'std::string' has not been declared
void SetName(std::string sName) {};
^
prog.cpp:15:24: error: 'std::string' has not been declared
void SetBirthday(std::string sYMD) {};
^
prog.cpp:19:7: error: 'string' in namespace 'std' does not name a type
std::string GetName(void) {};
^
prog.cpp:20:7: error: 'string' in namespace 'std' does not name a type
std::string GetBirthday(void) {};
^