// 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 using std::cin; using std::cout; using std::endl; int main() { return 0; }