diff options
Diffstat (limited to 'Project1/main.cpp')
| -rw-r--r-- | Project1/main.cpp | 9 |
1 files changed, 9 insertions, 0 deletions
diff --git a/Project1/main.cpp b/Project1/main.cpp index 61456c7..ef8b196 100644 --- a/Project1/main.cpp +++ b/Project1/main.cpp @@ -1,4 +1,13 @@ +// author: Connor McDowell +// date: 3/8/2024 +// class: CST116 at OIT +// reason: refactoring address book program that used .h and .cpp files with classes into a similar program using .hpp files (assignment 8) +#include "Contact.hpp" +#include <iostream> +using std::cin; +using std::cout; +using std::endl; int main() |