https://github.com/bitlytwiser/classrosterassignment
WGU Project for Class Roster Project
https://github.com/bitlytwiser/classrosterassignment
Last synced: 10 months ago
JSON representation
WGU Project for Class Roster Project
- Host: GitHub
- URL: https://github.com/bitlytwiser/classrosterassignment
- Owner: BitlyTwiser
- Created: 2022-02-04T04:54:24.000Z (over 4 years ago)
- Default Branch: development
- Last Pushed: 2022-02-10T16:22:06.000Z (over 4 years ago)
- Last Synced: 2025-02-24T01:51:06.941Z (over 1 year ago)
- Language: C++
- Size: 349 KB
- Stars: 0
- Watchers: 2
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
Awesome Lists containing this project
README
# Application:
- The input, which is a student data table was provided by WGU.
- The student data table is loaded by the constuctor when instantiating/creating a new isntance of the Roster class object.
- The constuctor of the Roster object calls setclassRosterVector to parse the studentDataTable and use the instance method "add" to add all of the Student objects (pointers to student objects) to a vector.
- The remaining portions of the primary functionality of the application is to parse out invalid student addresses, print all details of the student objects inside the vector, remove an element from the vector.
# Build:
- The files were split up into sub-fodlers to be a little more clean.
- build command: ```g++ -o classRoster main.cpp roster/* student/*```