An implementation of the class roster database for WGU C++ class. This is a simple program that can function as a database to store students in a class roster wth attributes like, ID, First and Last Name, Degree Program, and Ages.
Explore the docs »
·
Report Bug
·
Request Feature
Table of Contents
These are steps for setting up the project locally.
- install g++ GNU compiler
- install Homebrew then run
brew install gcc
- Build project
make
- To clean up object files
make clean
- To run application locally
./rostr
- A new student can be created using the Student constructor and student's information.
Student student(studentID, firstName, lastName, emailAddress, age, daysToCompleteCourses, degreeProgram);
- A student can be added to the class roster.
Roster classRoster(5);
classRoster.addStudent(Student* student);
Distributed under the MIT License. See LICENSE.txt
for more information.
Your Name - @sammig6i - [email protected]
Project Link: https://github.com/sammig6i/class-roster-db