// 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; using namespace myStructures; int main() { contact newContact; contact intContact; return 0; } // contact list class below, holding for later. //template //class ContactList //{ //public: // ContactList() = default; // ContactList(size_t size); //Creates contact list of this size // ContactList(const CList* contacts, const size_t& length); //Makes a copy of another contact list // ~ContactList(); // // ContactList(const ContactList& copy); //deep copy constructor // ContactList& operator=(const ContactList& rhs); //deep copy assignment // // ContactList(ContactList&& move); //reference(move) constructor // ContactList& operator=(ContactList&& rhs); //reference(move) assignment // //private: // CList* contacts_{ nullptr }; // size_t length_{ 0 }; // size_t size_{ 0 }; // // CList* AllocateContactList(const size_t& size); //};