Advertisement
Guest User

Untitled

a guest
Sep 3rd, 2015
67
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.31 KB | None | 0 0
  1. //
  2. // Created by Chris on 9/2/2015.
  3. //
  4.  
  5. #include "Student.h"
  6. #include <iostream>
  7.  
  8. using namespace std;
  9.  
  10. Student :: Student()
  11. {
  12. ID = 0;
  13. name = "";
  14. mail = "";
  15. }
  16. Student :: Student(int ID, string name, string mail)
  17. {
  18. this -> ID = ID;
  19. this -> name = name;
  20. this -> mail = mail;
  21. }
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement