From 3574cca5db98daa5264ea07d901fd366d07119ce Mon Sep 17 00:00:00 2001 From: Asahel Date: Mon, 29 Jan 2024 16:19:29 -0800 Subject: Spacing and headers --- Homework2/Header.h | 11 +++ Homework2/Homework2.sln | 31 ++++++++ Homework2/Homework2.vcxproj | 138 ++++++++++++++++++++++++++++++++++++ Homework2/Homework2.vcxproj.filters | 27 +++++++ Homework2/Source.cpp | 18 +++++ 5 files changed, 225 insertions(+) create mode 100644 Homework2/Header.h create mode 100644 Homework2/Homework2.sln create mode 100644 Homework2/Homework2.vcxproj create mode 100644 Homework2/Homework2.vcxproj.filters create mode 100644 Homework2/Source.cpp (limited to 'Homework2') diff --git a/Homework2/Header.h b/Homework2/Header.h new file mode 100644 index 0000000..a5e1d8b --- /dev/null +++ b/Homework2/Header.h @@ -0,0 +1,11 @@ + +#ifndef MY_HEADER_FILE_H +#define MY_HEADER_FILE_H + +int returnInt(); + +int sum(int a, int b); + +float FtoC(int fah); + +float CtoF(int cel); \ No newline at end of file diff --git a/Homework2/Homework2.sln b/Homework2/Homework2.sln new file mode 100644 index 0000000..0f677d5 --- /dev/null +++ b/Homework2/Homework2.sln @@ -0,0 +1,31 @@ + +Microsoft Visual Studio Solution File, Format Version 12.00 +# Visual Studio Version 17 +VisualStudioVersion = 17.8.34408.163 +MinimumVisualStudioVersion = 10.0.40219.1 +Project("{8BC9CEB8-8B4A-11D0-8D11-00A0C91BC942}") = "Homework2", "Homework2.vcxproj", "{7F7E5CF0-CA91-4F15-85DF-5F84D0675F87}" +EndProject +Global + GlobalSection(SolutionConfigurationPlatforms) = preSolution + Debug|x64 = Debug|x64 + Debug|x86 = Debug|x86 + Release|x64 = Release|x64 + Release|x86 = Release|x86 + EndGlobalSection + GlobalSection(ProjectConfigurationPlatforms) = postSolution + {7F7E5CF0-CA91-4F15-85DF-5F84D0675F87}.Debug|x64.ActiveCfg = Debug|x64 + {7F7E5CF0-CA91-4F15-85DF-5F84D0675F87}.Debug|x64.Build.0 = Debug|x64 + {7F7E5CF0-CA91-4F15-85DF-5F84D0675F87}.Debug|x86.ActiveCfg = Debug|Win32 + {7F7E5CF0-CA91-4F15-85DF-5F84D0675F87}.Debug|x86.Build.0 = Debug|Win32 + {7F7E5CF0-CA91-4F15-85DF-5F84D0675F87}.Release|x64.ActiveCfg = Release|x64 + {7F7E5CF0-CA91-4F15-85DF-5F84D0675F87}.Release|x64.Build.0 = Release|x64 + {7F7E5CF0-CA91-4F15-85DF-5F84D0675F87}.Release|x86.ActiveCfg = Release|Win32 + {7F7E5CF0-CA91-4F15-85DF-5F84D0675F87}.Release|x86.Build.0 = Release|Win32 + EndGlobalSection + GlobalSection(SolutionProperties) = preSolution + HideSolutionNode = FALSE + EndGlobalSection + GlobalSection(ExtensibilityGlobals) = postSolution + SolutionGuid = {E4573B17-DDF2-446C-B37B-2CB5CD9743AF} + EndGlobalSection +EndGlobal diff --git a/Homework2/Homework2.vcxproj b/Homework2/Homework2.vcxproj new file mode 100644 index 0000000..2e8e8b3 --- /dev/null +++ b/Homework2/Homework2.vcxproj @@ -0,0 +1,138 @@ + + + + + Debug + Win32 + + + Release + Win32 + + + Debug + x64 + + + Release + x64 + + + + 17.0 + Win32Proj + {7f7e5cf0-ca91-4f15-85df-5f84d0675f87} + Homework2 + 10.0 + + + + Application + true + v143 + Unicode + + + Application + false + v143 + true + Unicode + + + Application + true + v143 + Unicode + + + Application + false + v143 + true + Unicode + + + + + + + + + + + + + + + + + + + + + + Level3 + true + WIN32;_DEBUG;_CONSOLE;%(PreprocessorDefinitions) + true + + + Console + true + + + + + Level3 + true + true + true + WIN32;NDEBUG;_CONSOLE;%(PreprocessorDefinitions) + true + + + Console + true + true + true + + + + + Level3 + true + _DEBUG;_CONSOLE;%(PreprocessorDefinitions) + true + + + Console + true + + + + + Level3 + true + true + true + NDEBUG;_CONSOLE;%(PreprocessorDefinitions) + true + + + Console + true + true + true + + + + + + + + + + + + \ No newline at end of file diff --git a/Homework2/Homework2.vcxproj.filters b/Homework2/Homework2.vcxproj.filters new file mode 100644 index 0000000..25c729c --- /dev/null +++ b/Homework2/Homework2.vcxproj.filters @@ -0,0 +1,27 @@ + + + + + {4FC737F1-C7A5-4376-A066-2A32D752A2FF} + cpp;c;cc;cxx;c++;cppm;ixx;def;odl;idl;hpj;bat;asm;asmx + + + {93995380-89BD-4b04-88EB-625FBE52EBFB} + h;hh;hpp;hxx;h++;hm;inl;inc;ipp;xsd + + + {67DA6AB6-F800-4c08-8B7A-83BB121AAD01} + rc;ico;cur;bmp;dlg;rc2;rct;bin;rgs;gif;jpg;jpeg;jpe;resx;tiff;tif;png;wav;mfcribbon-ms + + + + + Source Files + + + + + Header Files + + + \ No newline at end of file diff --git a/Homework2/Source.cpp b/Homework2/Source.cpp new file mode 100644 index 0000000..f98f48b --- /dev/null +++ b/Homework2/Source.cpp @@ -0,0 +1,18 @@ +// Name: Asahel Lopez // +// Class: CST 116 // +// Date: 1/28/24 // +// Assignment: Homework 2 // + +#include + +#include "Header.h" + + + + + + +int main() { + + return 0; +} \ No newline at end of file -- cgit v1.2.3