diff options
| author | Trevor Bouchillon <[email protected]> | 2022-10-30 15:30:12 -0700 |
|---|---|---|
| committer | Trevor Bouchillon <[email protected]> | 2022-10-30 15:30:12 -0700 |
| commit | a2a925a150864e9398c46b9f6ddc5ab65f1d409d (patch) | |
| tree | 082b9a2d8e4b9b186de5d12607500655ea85f392 | |
| parent | Added file (diff) | |
| download | cst116-ch11-debugging-daboochillin-a2a925a150864e9398c46b9f6ddc5ab65f1d409d.tar.xz cst116-ch11-debugging-daboochillin-a2a925a150864e9398c46b9f6ddc5ab65f1d409d.zip | |
changed output file
5 files changed, 15 insertions, 1 deletions
diff --git a/CST116-Ch11-Debugging/CST116-Ch11-Debugging.cpp b/CST116-Ch11-Debugging/CST116-Ch11-Debugging.cpp index 6be36a9..745b942 100644 --- a/CST116-Ch11-Debugging/CST116-Ch11-Debugging.cpp +++ b/CST116-Ch11-Debugging/CST116-Ch11-Debugging.cpp @@ -84,7 +84,7 @@ int main() ifstream inFile; // Notice how this automatically opens the file - ofstream outFile("C:\\TEMP\\Chap_11_Report.txt"); + ofstream outFile("C:\\TEMP\\Chap_11_ReportOut.txt"); //changed output file to be seperate. inFile.open("C:\\TEMP\\Chap_11_Report.txt"); diff --git a/CST116-Ch11-Debugging/CST116-Ch11-Debugging.vcxproj b/CST116-Ch11-Debugging/CST116-Ch11-Debugging.vcxproj index 11a5f66..fc8ebfc 100644 --- a/CST116-Ch11-Debugging/CST116-Ch11-Debugging.vcxproj +++ b/CST116-Ch11-Debugging/CST116-Ch11-Debugging.vcxproj @@ -131,6 +131,7 @@ </ItemGroup> <ItemGroup> <Text Include="..\..\..\..\..\..\TEMP\Chap_11_Report.txt" /> + <Text Include="..\..\..\..\..\..\TEMP\Chap_11_ReportOut.txt" /> </ItemGroup> <Import Project="$(VCTargetsPath)\Microsoft.Cpp.targets" /> <ImportGroup Label="ExtensionTargets"> diff --git a/CST116-Ch11-Debugging/CST116-Ch11-Debugging.vcxproj.filters b/CST116-Ch11-Debugging/CST116-Ch11-Debugging.vcxproj.filters index 0beccb6..3e8f363 100644 --- a/CST116-Ch11-Debugging/CST116-Ch11-Debugging.vcxproj.filters +++ b/CST116-Ch11-Debugging/CST116-Ch11-Debugging.vcxproj.filters @@ -20,6 +20,7 @@ </ClCompile> </ItemGroup> <ItemGroup> + <Text Include="..\..\..\..\..\..\TEMP\Chap_11_ReportOut.txt" /> <Text Include="..\..\..\..\..\..\TEMP\Chap_11_Report.txt" /> </ItemGroup> </Project>
\ No newline at end of file diff --git a/CST116-Ch11-Debugging/TEMPChap_11_Report.txt b/CST116-Ch11-Debugging/TEMPChap_11_Report.txt new file mode 100644 index 0000000..648d28a --- /dev/null +++ b/CST116-Ch11-Debugging/TEMPChap_11_Report.txt @@ -0,0 +1,6 @@ + Here is the Output File + -858993460 + + + ** Total Records: 0 ** + The End diff --git a/CST116-Ch11-Debugging/TEMPChap_11_Report1.txt b/CST116-Ch11-Debugging/TEMPChap_11_Report1.txt new file mode 100644 index 0000000..648d28a --- /dev/null +++ b/CST116-Ch11-Debugging/TEMPChap_11_Report1.txt @@ -0,0 +1,6 @@ + Here is the Output File + -858993460 + + + ** Total Records: 0 ** + The End |