From 5a95ed60ad42202661898507dc73c7b2aa5f68d3 Mon Sep 17 00:00:00 2001 From: "Andrew.Binder" Date: Wed, 7 Mar 2018 00:26:51 +0000 Subject: [PATCH] Comments; All Features Working --- Teacher.cpp | 8 ++++++-- Teacher.h | 6 ++++++ Teacher_Driver.cpp | 9 +++++++-- 3 files changed, 19 insertions(+), 4 deletions(-) diff --git a/Teacher.cpp b/Teacher.cpp index 88ba509..979263c 100644 --- a/Teacher.cpp +++ b/Teacher.cpp @@ -1,8 +1,12 @@ +// ***************************************************************************** +// Author: Andrew Binder +// Implemenation file for Teacher class +// Comments should explain everything +// ***************************************************************************** + #include "Teacher.h" #include #include -#include -#include ofstream fout; ifstream fin; diff --git a/Teacher.h b/Teacher.h index 001d836..e248a44 100644 --- a/Teacher.h +++ b/Teacher.h @@ -1,3 +1,9 @@ +// ***************************************************************************** +// Author: Andrew Binder +// Header file for Teacher class +// Comments should explain everything +// ***************************************************************************** + #include "Student.h" #include #include diff --git a/Teacher_Driver.cpp b/Teacher_Driver.cpp index 9de0ff5..3ec4f85 100644 --- a/Teacher_Driver.cpp +++ b/Teacher_Driver.cpp @@ -1,6 +1,11 @@ -// *************************************** +// ***************************************************************************** +// 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 #include -- GitLab