aboutsummaryrefslogtreecommitdiff
path: root/Project1/main.cpp
blob: e588a9d16f2d16a1f4b4907cbba12a88fa229af2 (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
// 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;

using namespace myStructures;

int main()
{



	return 0;
}