aboutsummaryrefslogtreecommitdiff
path: root/Project1/main.cpp
diff options
context:
space:
mode:
authorConnor McDowell <[email protected]>2024-03-08 14:21:55 -0800
committerConnor McDowell <[email protected]>2024-03-08 14:21:55 -0800
commit659fed3c1a322be019e794378a3e4a49e5c1f210 (patch)
tree98efd57ba09ff0d05a3acaa2fc97c7a8cc1c1935 /Project1/main.cpp
parentcontact.hpp and main.cpp created. (diff)
downloadhomework-8-connormcdowell275-659fed3c1a322be019e794378a3e4a49e5c1f210.tar.xz
homework-8-connormcdowell275-659fed3c1a322be019e794378a3e4a49e5c1f210.zip
main.cpp connected to contact.hpp
Diffstat (limited to 'Project1/main.cpp')
-rw-r--r--Project1/main.cpp9
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()