Guest User

Untitled

a guest
Nov 17th, 2018
123
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.44 KB | None | 0 0
  1. // File: Student_H.h
  2. #ifndef Student_H
  3.  
  4. #define Student_H
  5. #include <cstdio>
  6. #include <iostream>
  7. #include <string>
  8.  
  9. class Student {
  10.  
  11. private:
  12. std::string Name;
  13. std::string Address;
  14. long ID;
  15.  
  16. public:
  17. Student(long, std::string, std::string);
  18. void setID(long i);
  19. void setName(std::string n);
  20. void setAddress(std::string adr);
  21. long getID();
  22. std::string getName();
  23. std::string getAddress();
  24. std::string details();
  25. }
  26. #endif
Add Comment
Please, Sign In to add comment