This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
int process_employee(string SourceName,int Position, int& Employee,int& Time,double& PayRate) | |
{ | |
int EOF_Flag=0; | |
string line; | |
ifstream SourceFile; | |
SourceFile.open(SourceName.c_str()); | |
if (SourceFile.fail()) | |
{ | |
cout << "\nThe file couldn't be opened please make sure it is there\n"; |
NewerOlder