aboutsummaryrefslogtreecommitdiff
path: root/Ch 5 Debugging Project
diff options
context:
space:
mode:
authorWyatt <[email protected]>2022-09-29 14:28:51 -0700
committerWyatt <[email protected]>2022-09-29 14:28:51 -0700
commitb6de4d194b5485ca99835e0b7691eec63b0273e8 (patch)
tree3453f292de24b7bcb0db076ddeb2d816271e2de9 /Ch 5 Debugging Project
parentstuffs (diff)
downloadcst116-lab0-debugging-johnson-b6de4d194b5485ca99835e0b7691eec63b0273e8.tar.xz
cst116-lab0-debugging-johnson-b6de4d194b5485ca99835e0b7691eec63b0273e8.zip
Commit
Diffstat (limited to 'Ch 5 Debugging Project')
-rw-r--r--Ch 5 Debugging Project/Ch 5 Debugging Project.cpp24
-rw-r--r--Ch 5 Debugging Project/Ch 5 Debugging Project.vcxproj8
-rw-r--r--Ch 5 Debugging Project/Debug/Ch 5 Deb.57683855.tlog/CL.command.1.tlogbin914 -> 0 bytes
-rw-r--r--Ch 5 Debugging Project/Debug/Ch 5 Deb.57683855.tlog/CL.read.1.tlogbin21178 -> 0 bytes
-rw-r--r--Ch 5 Debugging Project/Debug/Ch 5 Deb.57683855.tlog/CL.write.1.tlogbin700 -> 0 bytes
-rw-r--r--Ch 5 Debugging Project/Debug/Ch 5 Deb.57683855.tlog/Ch 5 Debugging Project.lastbuildstate2
-rw-r--r--Ch 5 Debugging Project/Debug/Ch 5 Deb.57683855.tlog/link.command.1.tlogbin1592 -> 0 bytes
-rw-r--r--Ch 5 Debugging Project/Debug/Ch 5 Deb.57683855.tlog/link.read.1.tlogbin3638 -> 0 bytes
-rw-r--r--Ch 5 Debugging Project/Debug/Ch 5 Deb.57683855.tlog/link.write.1.tlogbin780 -> 0 bytes
-rw-r--r--Ch 5 Debugging Project/Debug/Ch 5 Debugging Project.Build.CppClean.log0
-rw-r--r--Ch 5 Debugging Project/Debug/Ch 5 Debugging Project.exebin53760 -> 0 bytes
-rw-r--r--Ch 5 Debugging Project/Debug/Ch 5 Debugging Project.ilkbin504812 -> 0 bytes
-rw-r--r--Ch 5 Debugging Project/Debug/Ch 5 Debugging Project.objbin69812 -> 0 bytes
-rw-r--r--Ch 5 Debugging Project/Debug/Ch 5 Debugging Project.pdbbin1200128 -> 0 bytes
-rw-r--r--Ch 5 Debugging Project/Debug/vc142.pdbbin471040 -> 0 bytes
-rw-r--r--Ch 5 Debugging Project/x64/Debug/Ch 5 Debugging Project.exebin0 -> 72704 bytes
-rw-r--r--Ch 5 Debugging Project/x64/Debug/Ch 5 Debugging Project.exe.recipe11
-rw-r--r--Ch 5 Debugging Project/x64/Debug/Ch 5 Debugging Project.ilkbin0 -> 733592 bytes
-rw-r--r--Ch 5 Debugging Project/x64/Debug/Ch 5 Debugging Project.log2
-rw-r--r--Ch 5 Debugging Project/x64/Debug/Ch 5 Debugging Project.objbin0 -> 90730 bytes
-rw-r--r--Ch 5 Debugging Project/x64/Debug/Ch 5 Debugging Project.pdbbin0 -> 1323008 bytes
-rw-r--r--Ch 5 Debugging Project/x64/Debug/Ch 5 Debugging Project.vcxproj.FileListAbsolute.txt1
-rw-r--r--Ch 5 Debugging Project/x64/Debug/vc143.idb (renamed from Ch 5 Debugging Project/Debug/vc142.idb)bin175104 -> 166912 bytes
-rw-r--r--Ch 5 Debugging Project/x64/Debug/vc143.pdbbin0 -> 462848 bytes
24 files changed, 41 insertions, 7 deletions
diff --git a/Ch 5 Debugging Project/Ch 5 Debugging Project.cpp b/Ch 5 Debugging Project/Ch 5 Debugging Project.cpp
index 7ea8962..0dcf564 100644
--- a/Ch 5 Debugging Project/Ch 5 Debugging Project.cpp
+++ b/Ch 5 Debugging Project/Ch 5 Debugging Project.cpp
@@ -83,5 +83,27 @@ int main()
cout << "After your raise you have $";
cout << money << endl;
+
return 0;
-} \ No newline at end of file
+}
+
+class Wall
+{
+
+ int health;
+
+ Wall(int newhealth)
+ {
+ health = newhealth;
+ }
+
+ void damage(int damage)
+ {
+ health -= damage;
+ }
+
+ void combine(Wall other)
+ {
+
+ }
+}; \ No newline at end of file
diff --git a/Ch 5 Debugging Project/Ch 5 Debugging Project.vcxproj b/Ch 5 Debugging Project/Ch 5 Debugging Project.vcxproj
index b6da2fe..97611d8 100644
--- a/Ch 5 Debugging Project/Ch 5 Debugging Project.vcxproj
+++ b/Ch 5 Debugging Project/Ch 5 Debugging Project.vcxproj
@@ -29,26 +29,26 @@
<PropertyGroup Condition="'$(Configuration)|$(Platform)'=='Debug|Win32'" Label="Configuration">
<ConfigurationType>Application</ConfigurationType>
<UseDebugLibraries>true</UseDebugLibraries>
- <PlatformToolset>v142</PlatformToolset>
+ <PlatformToolset>v143</PlatformToolset>
<CharacterSet>Unicode</CharacterSet>
</PropertyGroup>
<PropertyGroup Condition="'$(Configuration)|$(Platform)'=='Release|Win32'" Label="Configuration">
<ConfigurationType>Application</ConfigurationType>
<UseDebugLibraries>false</UseDebugLibraries>
- <PlatformToolset>v142</PlatformToolset>
+ <PlatformToolset>v143</PlatformToolset>
<WholeProgramOptimization>true</WholeProgramOptimization>
<CharacterSet>Unicode</CharacterSet>
</PropertyGroup>
<PropertyGroup Condition="'$(Configuration)|$(Platform)'=='Debug|x64'" Label="Configuration">
<ConfigurationType>Application</ConfigurationType>
<UseDebugLibraries>true</UseDebugLibraries>
- <PlatformToolset>v142</PlatformToolset>
+ <PlatformToolset>v143</PlatformToolset>
<CharacterSet>Unicode</CharacterSet>
</PropertyGroup>
<PropertyGroup Condition="'$(Configuration)|$(Platform)'=='Release|x64'" Label="Configuration">
<ConfigurationType>Application</ConfigurationType>
<UseDebugLibraries>false</UseDebugLibraries>
- <PlatformToolset>v142</PlatformToolset>
+ <PlatformToolset>v143</PlatformToolset>
<WholeProgramOptimization>true</WholeProgramOptimization>
<CharacterSet>Unicode</CharacterSet>
</PropertyGroup>
diff --git a/Ch 5 Debugging Project/Debug/Ch 5 Deb.57683855.tlog/CL.command.1.tlog b/Ch 5 Debugging Project/Debug/Ch 5 Deb.57683855.tlog/CL.command.1.tlog
deleted file mode 100644
index 1a0c11c..0000000
--- a/Ch 5 Debugging Project/Debug/Ch 5 Deb.57683855.tlog/CL.command.1.tlog
+++ /dev/null
Binary files differ
diff --git a/Ch 5 Debugging Project/Debug/Ch 5 Deb.57683855.tlog/CL.read.1.tlog b/Ch 5 Debugging Project/Debug/Ch 5 Deb.57683855.tlog/CL.read.1.tlog
deleted file mode 100644
index 5e84124..0000000
--- a/Ch 5 Debugging Project/Debug/Ch 5 Deb.57683855.tlog/CL.read.1.tlog
+++ /dev/null
Binary files differ
diff --git a/Ch 5 Debugging Project/Debug/Ch 5 Deb.57683855.tlog/CL.write.1.tlog b/Ch 5 Debugging Project/Debug/Ch 5 Deb.57683855.tlog/CL.write.1.tlog
deleted file mode 100644
index 141dadd..0000000
--- a/Ch 5 Debugging Project/Debug/Ch 5 Deb.57683855.tlog/CL.write.1.tlog
+++ /dev/null
Binary files differ
diff --git a/Ch 5 Debugging Project/Debug/Ch 5 Deb.57683855.tlog/Ch 5 Debugging Project.lastbuildstate b/Ch 5 Debugging Project/Debug/Ch 5 Deb.57683855.tlog/Ch 5 Debugging Project.lastbuildstate
deleted file mode 100644
index c583d0a..0000000
--- a/Ch 5 Debugging Project/Debug/Ch 5 Deb.57683855.tlog/Ch 5 Debugging Project.lastbuildstate
+++ /dev/null
@@ -1,2 +0,0 @@
-PlatformToolSet=v142:VCToolArchitecture=Native32Bit:VCToolsVersion=14.29.30133:VCServicingVersionCrtHeaders=14.29.30136:TargetPlatformVersion=10.0.19041.0:
-Debug|Win32|C:\Users\martha.chamberlin\source\repos\Ch 5 Debugging Project\|
diff --git a/Ch 5 Debugging Project/Debug/Ch 5 Deb.57683855.tlog/link.command.1.tlog b/Ch 5 Debugging Project/Debug/Ch 5 Deb.57683855.tlog/link.command.1.tlog
deleted file mode 100644
index b1e48a3..0000000
--- a/Ch 5 Debugging Project/Debug/Ch 5 Deb.57683855.tlog/link.command.1.tlog
+++ /dev/null
Binary files differ
diff --git a/Ch 5 Debugging Project/Debug/Ch 5 Deb.57683855.tlog/link.read.1.tlog b/Ch 5 Debugging Project/Debug/Ch 5 Deb.57683855.tlog/link.read.1.tlog
deleted file mode 100644
index 9a01428..0000000
--- a/Ch 5 Debugging Project/Debug/Ch 5 Deb.57683855.tlog/link.read.1.tlog
+++ /dev/null
Binary files differ
diff --git a/Ch 5 Debugging Project/Debug/Ch 5 Deb.57683855.tlog/link.write.1.tlog b/Ch 5 Debugging Project/Debug/Ch 5 Deb.57683855.tlog/link.write.1.tlog
deleted file mode 100644
index 5b35e5b..0000000
--- a/Ch 5 Debugging Project/Debug/Ch 5 Deb.57683855.tlog/link.write.1.tlog
+++ /dev/null
Binary files differ
diff --git a/Ch 5 Debugging Project/Debug/Ch 5 Debugging Project.Build.CppClean.log b/Ch 5 Debugging Project/Debug/Ch 5 Debugging Project.Build.CppClean.log
new file mode 100644
index 0000000..e69de29
--- /dev/null
+++ b/Ch 5 Debugging Project/Debug/Ch 5 Debugging Project.Build.CppClean.log
diff --git a/Ch 5 Debugging Project/Debug/Ch 5 Debugging Project.exe b/Ch 5 Debugging Project/Debug/Ch 5 Debugging Project.exe
deleted file mode 100644
index ca60826..0000000
--- a/Ch 5 Debugging Project/Debug/Ch 5 Debugging Project.exe
+++ /dev/null
Binary files differ
diff --git a/Ch 5 Debugging Project/Debug/Ch 5 Debugging Project.ilk b/Ch 5 Debugging Project/Debug/Ch 5 Debugging Project.ilk
deleted file mode 100644
index d2fc0eb..0000000
--- a/Ch 5 Debugging Project/Debug/Ch 5 Debugging Project.ilk
+++ /dev/null
Binary files differ
diff --git a/Ch 5 Debugging Project/Debug/Ch 5 Debugging Project.obj b/Ch 5 Debugging Project/Debug/Ch 5 Debugging Project.obj
deleted file mode 100644
index 7eabf55..0000000
--- a/Ch 5 Debugging Project/Debug/Ch 5 Debugging Project.obj
+++ /dev/null
Binary files differ
diff --git a/Ch 5 Debugging Project/Debug/Ch 5 Debugging Project.pdb b/Ch 5 Debugging Project/Debug/Ch 5 Debugging Project.pdb
deleted file mode 100644
index aa8aed7..0000000
--- a/Ch 5 Debugging Project/Debug/Ch 5 Debugging Project.pdb
+++ /dev/null
Binary files differ
diff --git a/Ch 5 Debugging Project/Debug/vc142.pdb b/Ch 5 Debugging Project/Debug/vc142.pdb
deleted file mode 100644
index 623899a..0000000
--- a/Ch 5 Debugging Project/Debug/vc142.pdb
+++ /dev/null
Binary files differ
diff --git a/Ch 5 Debugging Project/x64/Debug/Ch 5 Debugging Project.exe b/Ch 5 Debugging Project/x64/Debug/Ch 5 Debugging Project.exe
new file mode 100644
index 0000000..4102483
--- /dev/null
+++ b/Ch 5 Debugging Project/x64/Debug/Ch 5 Debugging Project.exe
Binary files differ
diff --git a/Ch 5 Debugging Project/x64/Debug/Ch 5 Debugging Project.exe.recipe b/Ch 5 Debugging Project/x64/Debug/Ch 5 Debugging Project.exe.recipe
new file mode 100644
index 0000000..9c644e5
--- /dev/null
+++ b/Ch 5 Debugging Project/x64/Debug/Ch 5 Debugging Project.exe.recipe
@@ -0,0 +1,11 @@
+<?xml version="1.0" encoding="utf-8"?>
+<Project>
+ <ProjectOutputs>
+ <ProjectOutput>
+ <FullPath>C:\Users\wythe\Desktop\Homework\cst116-lab0-debugging-hyper2snyper\Ch 5 Debugging Project\x64\Debug\Ch 5 Debugging Project.exe</FullPath>
+ </ProjectOutput>
+ </ProjectOutputs>
+ <ContentFiles />
+ <SatelliteDlls />
+ <NonRecipeFileRefs />
+</Project> \ No newline at end of file
diff --git a/Ch 5 Debugging Project/x64/Debug/Ch 5 Debugging Project.ilk b/Ch 5 Debugging Project/x64/Debug/Ch 5 Debugging Project.ilk
new file mode 100644
index 0000000..ce86c09
--- /dev/null
+++ b/Ch 5 Debugging Project/x64/Debug/Ch 5 Debugging Project.ilk
Binary files differ
diff --git a/Ch 5 Debugging Project/x64/Debug/Ch 5 Debugging Project.log b/Ch 5 Debugging Project/x64/Debug/Ch 5 Debugging Project.log
new file mode 100644
index 0000000..580a9a4
--- /dev/null
+++ b/Ch 5 Debugging Project/x64/Debug/Ch 5 Debugging Project.log
@@ -0,0 +1,2 @@
+ Ch 5 Debugging Project.cpp
+ Ch 5 Debugging Project.vcxproj -> C:\Users\wythe\Desktop\Homework\cst116-lab0-debugging-hyper2snyper\Ch 5 Debugging Project\x64\Debug\Ch 5 Debugging Project.exe
diff --git a/Ch 5 Debugging Project/x64/Debug/Ch 5 Debugging Project.obj b/Ch 5 Debugging Project/x64/Debug/Ch 5 Debugging Project.obj
new file mode 100644
index 0000000..90e39b7
--- /dev/null
+++ b/Ch 5 Debugging Project/x64/Debug/Ch 5 Debugging Project.obj
Binary files differ
diff --git a/Ch 5 Debugging Project/x64/Debug/Ch 5 Debugging Project.pdb b/Ch 5 Debugging Project/x64/Debug/Ch 5 Debugging Project.pdb
new file mode 100644
index 0000000..5a4102d
--- /dev/null
+++ b/Ch 5 Debugging Project/x64/Debug/Ch 5 Debugging Project.pdb
Binary files differ
diff --git a/Ch 5 Debugging Project/x64/Debug/Ch 5 Debugging Project.vcxproj.FileListAbsolute.txt b/Ch 5 Debugging Project/x64/Debug/Ch 5 Debugging Project.vcxproj.FileListAbsolute.txt
new file mode 100644
index 0000000..06c2b75
--- /dev/null
+++ b/Ch 5 Debugging Project/x64/Debug/Ch 5 Debugging Project.vcxproj.FileListAbsolute.txt
@@ -0,0 +1 @@
+C:\Users\wythe\Desktop\Homework\cst116-lab0-debugging-hyper2snyper\Ch 5 Debugging Project\x64\Debug\Ch 5 Debugging Project.exe
diff --git a/Ch 5 Debugging Project/Debug/vc142.idb b/Ch 5 Debugging Project/x64/Debug/vc143.idb
index f55026c..6c1442b 100644
--- a/Ch 5 Debugging Project/Debug/vc142.idb
+++ b/Ch 5 Debugging Project/x64/Debug/vc143.idb
Binary files differ
diff --git a/Ch 5 Debugging Project/x64/Debug/vc143.pdb b/Ch 5 Debugging Project/x64/Debug/vc143.pdb
new file mode 100644
index 0000000..01715d9
--- /dev/null
+++ b/Ch 5 Debugging Project/x64/Debug/vc143.pdb
Binary files differ