Advertisement
Guest User

Untitled

a guest
Apr 22nd, 2017
103
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.50 KB | None | 0 0
  1. #include <fstream>
  2. #include <iostream>
  3. #include <cstring>
  4. #include <string>
  5. #include <iomanip>
  6. #include <cstdlib>
  7. #include <vector>
  8. #include "student.h"
  9. #ifndef STDNTLST
  10. #define STDNTLST
  11. using namespace std;
  12.  
  13. class studentList{
  14. private:
  15. unsigned int maxSize;
  16. int nameLength, idLength;
  17. vector<student> stuList;
  18. public:
  19. /*stuList (unsigned int size=0)
  20. {
  21. nameLength=student::nameLength;
  22. }*/
  23. bool addStudent(student);
  24. // void writeData(ostream& outfile, student);
  25. };
  26. #endif
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement