diff options
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 |