Guest User

Untitled

a guest
May 14th, 2015
230
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.36 KB | None | 0 0
  1. string readFile(){
  2. string content;
  3. ifstream myFile("C:\\Users\\Jarek\\ClionProjects\\stratgen\\Read.txt");
  4. if (myFile.good()){
  5. myFile.open("C:\\Users\\Jarek\\ClionProjects\\stratgen\\Read.txt");
  6. myFile >> content;
  7. myFile.close();
  8. return content;
  9. }
  10. else{
  11. myFile.close();
  12. return NULL;
  13. }
  14. }
Advertisement
Add Comment
Please, Sign In to add comment