Skip to content
GitLab
Projects
Groups
Snippets
Help
Loading...
Help
Help
Support
Community forum
Keyboard shortcuts
?
Submit feedback
Sign in
Toggle navigation
C
cptr142_group_project
Project overview
Project overview
Details
Activity
Releases
Repository
Repository
Files
Commits
Branches
Tags
Contributors
Graph
Compare
Issues
0
Issues
0
List
Boards
Labels
Service Desk
Milestones
Merge Requests
0
Merge Requests
0
CI / CD
CI / CD
Pipelines
Jobs
Schedules
Operations
Operations
Incidents
Environments
Packages & Registries
Packages & Registries
Container Registry
Analytics
Analytics
CI / CD
Repository
Value Stream
Wiki
Wiki
Snippets
Snippets
Members
Members
Collapse sidebar
Close sidebar
Activity
Graph
Create a new issue
Jobs
Commits
Issue Boards
Open sidebar
Jared Sexton
cptr142_group_project
Commits
5a95ed60
Commit
5a95ed60
authored
Mar 07, 2018
by
Andrew Binder
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
Comments; All Features Working
parent
0e980f54
Changes
3
Show whitespace changes
Inline
Side-by-side
Showing
3 changed files
with
19 additions
and
4 deletions
+19
-4
Teacher.cpp
Teacher.cpp
+6
-2
Teacher.h
Teacher.h
+6
-0
Teacher_Driver.cpp
Teacher_Driver.cpp
+7
-2
No files found.
Teacher.cpp
View file @
5a95ed60
// *****************************************************************************
// Author: Andrew Binder
// Implemenation file for Teacher class
// Comments should explain everything
// *****************************************************************************
#include "Teacher.h"
#include <iostream>
#include <fstream>
#include <chrono>
#include <ctime>
ofstream
fout
;
ifstream
fin
;
...
...
Teacher.h
View file @
5a95ed60
// *****************************************************************************
// Author: Andrew Binder
// Header file for Teacher class
// Comments should explain everything
// *****************************************************************************
#include "Student.h"
#include <vector>
#include <string>
...
...
Teacher_Driver.cpp
View file @
5a95ed60
// ***************************************
// *****************************************************************************
// AUTHOR: Andrew Binder
// This file is a test drive for the Teacher.h/cpp classes. It, along with the
// .h and .cpp file explain everything you should need to know about my files.
//
// Test Drive compilation instructions:
// g++ -std=c++11 Teacher_Driver.cpp Teacher.cpp -o Teacher_Driver.cpp.o
// g++ -std=c++11 Teacher_Driver.cpp Teacher.cpp -o Teacher_Driver.cpp.o && ./Teacher_Driver.cpp.o
// *****************************************************************************
#include <string>
#include <iostream>
...
...
Write
Preview
Markdown
is supported
0%
Try again
or
attach a new file
.
Attach a file
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Cancel
Please
register
or
sign in
to comment