Advertisement
Maksud3

GetData

May 16th, 2019
124
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
C++ 0.40 KB | None | 0 0
  1. void User::GetData()
  2. {
  3.     ifstream dump;
  4.     string path = "Users\\";
  5.     path += this->GetLogin() + ".txt";
  6.     dump.open(path, ios::in);
  7.  
  8.     dump >> this->Login;
  9.     dump >> this->Password;
  10.     dump >> this->FirstName;
  11.     dump >> this->Surname;
  12.     dump >> this->LastName;
  13.     dump >> this->Address;
  14.     dump >> this->CellNumber;
  15.     dump >> this->Email;
  16.     dump >> this->Role;
  17.     dump >> this->TotalAmount;
  18.  
  19.     dump.close();
  20. }
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement