diff options
Diffstat (limited to 'Project1')
| -rw-r--r-- | Project1/Project1.vcxproj | 3 | ||||
| -rw-r--r-- | Project1/main.cpp | 9 |
2 files changed, 12 insertions, 0 deletions
diff --git a/Project1/Project1.vcxproj b/Project1/Project1.vcxproj index 9d96311..fac92e1 100644 --- a/Project1/Project1.vcxproj +++ b/Project1/Project1.vcxproj @@ -70,6 +70,9 @@ <Import Project="$(UserRootDir)\Microsoft.Cpp.$(Platform).user.props" Condition="exists('$(UserRootDir)\Microsoft.Cpp.$(Platform).user.props')" Label="LocalAppDataPlatform" /> </ImportGroup> <PropertyGroup Label="UserMacros" /> + <PropertyGroup Condition="'$(Configuration)|$(Platform)'=='Debug|x64'"> + <IncludePath>C:\Users\thesa\source\repos\homework-8-connormcdowell275\My structures;$(IncludePath)</IncludePath> + </PropertyGroup> <ItemDefinitionGroup Condition="'$(Configuration)|$(Platform)'=='Debug|Win32'"> <ClCompile> <WarningLevel>Level3</WarningLevel> 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() |