Skip to content

Commit

Permalink
e
Browse files Browse the repository at this point in the history
  • Loading branch information
poiley committed Apr 25, 2018
1 parent af0b739 commit acc9672
Show file tree
Hide file tree
Showing 23 changed files with 585 additions and 62 deletions.
28 changes: 28 additions & 0 deletions Lab13/Lab13.sln
Original file line number Diff line number Diff line change
@@ -0,0 +1,28 @@

Microsoft Visual Studio Solution File, Format Version 12.00
# Visual Studio 14
VisualStudioVersion = 14.0.25420.1
MinimumVisualStudioVersion = 10.0.40219.1
Project("{8BC9CEB8-8B4A-11D0-8D11-00A0C91BC942}") = "Lab13", "Lab13\Lab13.vcxproj", "{F198083B-A0CB-4DF7-9CC7-2840DB68E406}"
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
{F198083B-A0CB-4DF7-9CC7-2840DB68E406}.Debug|x64.ActiveCfg = Debug|x64
{F198083B-A0CB-4DF7-9CC7-2840DB68E406}.Debug|x64.Build.0 = Debug|x64
{F198083B-A0CB-4DF7-9CC7-2840DB68E406}.Debug|x86.ActiveCfg = Debug|Win32
{F198083B-A0CB-4DF7-9CC7-2840DB68E406}.Debug|x86.Build.0 = Debug|Win32
{F198083B-A0CB-4DF7-9CC7-2840DB68E406}.Release|x64.ActiveCfg = Release|x64
{F198083B-A0CB-4DF7-9CC7-2840DB68E406}.Release|x64.Build.0 = Release|x64
{F198083B-A0CB-4DF7-9CC7-2840DB68E406}.Release|x86.ActiveCfg = Release|Win32
{F198083B-A0CB-4DF7-9CC7-2840DB68E406}.Release|x86.Build.0 = Release|Win32
EndGlobalSection
GlobalSection(SolutionProperties) = preSolution
HideSolutionNode = FALSE
EndGlobalSection
EndGlobal
17 changes: 17 additions & 0 deletions Lab13/Lab13/Cat.cpp
Original file line number Diff line number Diff line change
@@ -0,0 +1,17 @@
#include "Cat.h"

Cat::Cat(void) {
cout << "Cat constructor..." << endl;
}

Cat::~Cat(void) {
cout << "Cat destructor..." << endl;
}

void Cat::Move() const {
cout << "Cat moves a step!" << endl;
}

void Cat::Speak() const {
cout << "Meow, bitch." << endl;
}
14 changes: 14 additions & 0 deletions Lab13/Lab13/Cat.h
Original file line number Diff line number Diff line change
@@ -0,0 +1,14 @@
#pragma once

#include "Mammal.h"

class Cat : public Mammal {
public:
Cat(void);
~Cat(void);

void Move() const;
void Speak() const;
protected:
int itsAge;
};
17 changes: 17 additions & 0 deletions Lab13/Lab13/Dog.cpp
Original file line number Diff line number Diff line change
@@ -0,0 +1,17 @@
#include "Dog.h"

Dog::Dog(void) {
cout << "Dog constructor..." << endl;
}

Dog::~Dog(void) {
cout << "Dog destructor..." << endl;
}

void Dog::Move() const {
cout << "Dog moves a step!" << endl;
}

void Dog::Speak() const {
cout << "Bark bark, bitch." << endl;
}
15 changes: 15 additions & 0 deletions Lab13/Lab13/Dog.h
Original file line number Diff line number Diff line change
@@ -0,0 +1,15 @@
#pragma once

#include "Mammal.h"

class Dog : public Mammal {
public:
Dog(void);
~Dog(void);

void Move() const;
void Speak() const;

protected:
int itsAge;
};
17 changes: 17 additions & 0 deletions Lab13/Lab13/GuineaPig.cpp
Original file line number Diff line number Diff line change
@@ -0,0 +1,17 @@
#include "GuineaPig.h"

GuineaPig::GuineaPig(void) {
cout << "GuineaPig constructor..." << endl;
}

GuineaPig::~GuineaPig(void) {
cout << "GuineaPig destructor..." << endl;
}

void GuineaPig::Move() const {
cout << "GuineaPig moves a step!" << endl;
}

void GuineaPig::Speak() const {
cout << "Weep weep, bitch." << endl;
}
14 changes: 14 additions & 0 deletions Lab13/Lab13/GuineaPig.h
Original file line number Diff line number Diff line change
@@ -0,0 +1,14 @@
#pragma once

#include "Mammal.h"

class GuineaPig : public Mammal {
public:
GuineaPig(void);
~GuineaPig(void);

void Move() const;
void Speak() const;
protected:
int itsAge;
};
17 changes: 17 additions & 0 deletions Lab13/Lab13/Horse.cpp
Original file line number Diff line number Diff line change
@@ -0,0 +1,17 @@
#include "Horse.h"

Horse::Horse(void) {
cout << "Horse constructor..." << endl;
}

Horse::~Horse(void) {
cout << "Horse destructor..." << endl;
}

void Horse::Move() const {
cout << "Horse moves a step!" << endl;
}

void Horse::Speak() const {
cout << "Neigh, bitch." << endl;
}
14 changes: 14 additions & 0 deletions Lab13/Lab13/Horse.h
Original file line number Diff line number Diff line change
@@ -0,0 +1,14 @@
#pragma once

#include "Mammal.h"

class Horse : public Mammal {
public:
Horse(void);
~Horse(void);

void Move() const;
void Speak() const;
protected:
int itsAge;
};
164 changes: 164 additions & 0 deletions Lab13/Lab13/Lab13.vcxproj
Original file line number Diff line number Diff line change
@@ -0,0 +1,164 @@
<?xml version="1.0" encoding="utf-8"?>
<Project DefaultTargets="Build" ToolsVersion="14.0" xmlns="http://schemas.microsoft.com/developer/msbuild/2003">
<ItemGroup Label="ProjectConfigurations">
<ProjectConfiguration Include="Debug|Win32">
<Configuration>Debug</Configuration>
<Platform>Win32</Platform>
</ProjectConfiguration>
<ProjectConfiguration Include="Release|Win32">
<Configuration>Release</Configuration>
<Platform>Win32</Platform>
</ProjectConfiguration>
<ProjectConfiguration Include="Debug|x64">
<Configuration>Debug</Configuration>
<Platform>x64</Platform>
</ProjectConfiguration>
<ProjectConfiguration Include="Release|x64">
<Configuration>Release</Configuration>
<Platform>x64</Platform>
</ProjectConfiguration>
</ItemGroup>
<PropertyGroup Label="Globals">
<ProjectGuid>{F198083B-A0CB-4DF7-9CC7-2840DB68E406}</ProjectGuid>
<Keyword>Win32Proj</Keyword>
<RootNamespace>Lab13</RootNamespace>
<WindowsTargetPlatformVersion>8.1</WindowsTargetPlatformVersion>
</PropertyGroup>
<Import Project="$(VCTargetsPath)\Microsoft.Cpp.Default.props" />
<PropertyGroup Condition="'$(Configuration)|$(Platform)'=='Debug|Win32'" Label="Configuration">
<ConfigurationType>Application</ConfigurationType>
<UseDebugLibraries>true</UseDebugLibraries>
<PlatformToolset>v140</PlatformToolset>
<CharacterSet>Unicode</CharacterSet>
</PropertyGroup>
<PropertyGroup Condition="'$(Configuration)|$(Platform)'=='Release|Win32'" Label="Configuration">
<ConfigurationType>Application</ConfigurationType>
<UseDebugLibraries>false</UseDebugLibraries>
<PlatformToolset>v140</PlatformToolset>
<WholeProgramOptimization>true</WholeProgramOptimization>
<CharacterSet>Unicode</CharacterSet>
</PropertyGroup>
<PropertyGroup Condition="'$(Configuration)|$(Platform)'=='Debug|x64'" Label="Configuration">
<ConfigurationType>Application</ConfigurationType>
<UseDebugLibraries>true</UseDebugLibraries>
<PlatformToolset>v140</PlatformToolset>
<CharacterSet>Unicode</CharacterSet>
</PropertyGroup>
<PropertyGroup Condition="'$(Configuration)|$(Platform)'=='Release|x64'" Label="Configuration">
<ConfigurationType>Application</ConfigurationType>
<UseDebugLibraries>false</UseDebugLibraries>
<PlatformToolset>v140</PlatformToolset>
<WholeProgramOptimization>true</WholeProgramOptimization>
<CharacterSet>Unicode</CharacterSet>
</PropertyGroup>
<Import Project="$(VCTargetsPath)\Microsoft.Cpp.props" />
<ImportGroup Label="ExtensionSettings">
</ImportGroup>
<ImportGroup Label="Shared">
</ImportGroup>
<ImportGroup Label="PropertySheets" Condition="'$(Configuration)|$(Platform)'=='Debug|Win32'">
<Import Project="$(UserRootDir)\Microsoft.Cpp.$(Platform).user.props" Condition="exists('$(UserRootDir)\Microsoft.Cpp.$(Platform).user.props')" Label="LocalAppDataPlatform" />
</ImportGroup>
<ImportGroup Label="PropertySheets" Condition="'$(Configuration)|$(Platform)'=='Release|Win32'">
<Import Project="$(UserRootDir)\Microsoft.Cpp.$(Platform).user.props" Condition="exists('$(UserRootDir)\Microsoft.Cpp.$(Platform).user.props')" Label="LocalAppDataPlatform" />
</ImportGroup>
<ImportGroup Label="PropertySheets" Condition="'$(Configuration)|$(Platform)'=='Debug|x64'">
<Import Project="$(UserRootDir)\Microsoft.Cpp.$(Platform).user.props" Condition="exists('$(UserRootDir)\Microsoft.Cpp.$(Platform).user.props')" Label="LocalAppDataPlatform" />
</ImportGroup>
<ImportGroup Label="PropertySheets" Condition="'$(Configuration)|$(Platform)'=='Release|x64'">
<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|Win32'">
<LinkIncremental>true</LinkIncremental>
</PropertyGroup>
<PropertyGroup Condition="'$(Configuration)|$(Platform)'=='Debug|x64'">
<LinkIncremental>true</LinkIncremental>
</PropertyGroup>
<PropertyGroup Condition="'$(Configuration)|$(Platform)'=='Release|Win32'">
<LinkIncremental>false</LinkIncremental>
</PropertyGroup>
<PropertyGroup Condition="'$(Configuration)|$(Platform)'=='Release|x64'">
<LinkIncremental>false</LinkIncremental>
</PropertyGroup>
<ItemDefinitionGroup Condition="'$(Configuration)|$(Platform)'=='Debug|Win32'">
<ClCompile>
<PrecompiledHeader>
</PrecompiledHeader>
<WarningLevel>Level3</WarningLevel>
<Optimization>Disabled</Optimization>
<PreprocessorDefinitions>WIN32;_DEBUG;_CONSOLE;%(PreprocessorDefinitions)</PreprocessorDefinitions>
</ClCompile>
<Link>
<SubSystem>Console</SubSystem>
<GenerateDebugInformation>true</GenerateDebugInformation>
</Link>
</ItemDefinitionGroup>
<ItemDefinitionGroup Condition="'$(Configuration)|$(Platform)'=='Debug|x64'">
<ClCompile>
<PrecompiledHeader>
</PrecompiledHeader>
<WarningLevel>Level3</WarningLevel>
<Optimization>Disabled</Optimization>
<PreprocessorDefinitions>_DEBUG;_CONSOLE;%(PreprocessorDefinitions)</PreprocessorDefinitions>
</ClCompile>
<Link>
<SubSystem>Console</SubSystem>
<GenerateDebugInformation>true</GenerateDebugInformation>
</Link>
</ItemDefinitionGroup>
<ItemDefinitionGroup Condition="'$(Configuration)|$(Platform)'=='Release|Win32'">
<ClCompile>
<WarningLevel>Level3</WarningLevel>
<PrecompiledHeader>
</PrecompiledHeader>
<Optimization>MaxSpeed</Optimization>
<FunctionLevelLinking>true</FunctionLevelLinking>
<IntrinsicFunctions>true</IntrinsicFunctions>
<PreprocessorDefinitions>WIN32;NDEBUG;_CONSOLE;%(PreprocessorDefinitions)</PreprocessorDefinitions>
</ClCompile>
<Link>
<SubSystem>Console</SubSystem>
<EnableCOMDATFolding>true</EnableCOMDATFolding>
<OptimizeReferences>true</OptimizeReferences>
<GenerateDebugInformation>true</GenerateDebugInformation>
</Link>
</ItemDefinitionGroup>
<ItemDefinitionGroup Condition="'$(Configuration)|$(Platform)'=='Release|x64'">
<ClCompile>
<WarningLevel>Level3</WarningLevel>
<PrecompiledHeader>
</PrecompiledHeader>
<Optimization>MaxSpeed</Optimization>
<FunctionLevelLinking>true</FunctionLevelLinking>
<IntrinsicFunctions>true</IntrinsicFunctions>
<PreprocessorDefinitions>NDEBUG;_CONSOLE;%(PreprocessorDefinitions)</PreprocessorDefinitions>
</ClCompile>
<Link>
<SubSystem>Console</SubSystem>
<EnableCOMDATFolding>true</EnableCOMDATFolding>
<OptimizeReferences>true</OptimizeReferences>
<GenerateDebugInformation>true</GenerateDebugInformation>
</Link>
</ItemDefinitionGroup>
<ItemGroup>
<ClInclude Include="Cat.h" />
<ClInclude Include="Dog.h" />
<ClInclude Include="GuineaPig.h" />
<ClInclude Include="Horse.h" />
<ClInclude Include="Mammal.h" />
<ClInclude Include="Task1.h" />
</ItemGroup>
<ItemGroup>
<ClCompile Include="Cat.cpp" />
<ClCompile Include="Dog.cpp" />
<ClCompile Include="GuineaPig.cpp" />
<ClCompile Include="Horse.cpp" />
<ClCompile Include="Main.cpp" />
<ClCompile Include="Mammal.cpp" />
<ClCompile Include="Task1.cpp" />
</ItemGroup>
<Import Project="$(VCTargetsPath)\Microsoft.Cpp.targets" />
<ImportGroup Label="ExtensionTargets">
</ImportGroup>
</Project>
60 changes: 60 additions & 0 deletions Lab13/Lab13/Lab13.vcxproj.filters
Original file line number Diff line number Diff line change
@@ -0,0 +1,60 @@
<?xml version="1.0" encoding="utf-8"?>
<Project ToolsVersion="4.0" xmlns="http://schemas.microsoft.com/developer/msbuild/2003">
<ItemGroup>
<Filter Include="Source Files">
<UniqueIdentifier>{4FC737F1-C7A5-4376-A066-2A32D752A2FF}</UniqueIdentifier>
<Extensions>cpp;c;cc;cxx;def;odl;idl;hpj;bat;asm;asmx</Extensions>
</Filter>
<Filter Include="Header Files">
<UniqueIdentifier>{93995380-89BD-4b04-88EB-625FBE52EBFB}</UniqueIdentifier>
<Extensions>h;hh;hpp;hxx;hm;inl;inc;xsd</Extensions>
</Filter>
<Filter Include="Resource Files">
<UniqueIdentifier>{67DA6AB6-F800-4c08-8B7A-83BB121AAD01}</UniqueIdentifier>
<Extensions>rc;ico;cur;bmp;dlg;rc2;rct;bin;rgs;gif;jpg;jpeg;jpe;resx;tiff;tif;png;wav;mfcribbon-ms</Extensions>
</Filter>
</ItemGroup>
<ItemGroup>
<ClInclude Include="Task1.h">
<Filter>Header Files</Filter>
</ClInclude>
<ClInclude Include="Mammal.h">
<Filter>Header Files</Filter>
</ClInclude>
<ClInclude Include="Dog.h">
<Filter>Header Files</Filter>
</ClInclude>
<ClInclude Include="Cat.h">
<Filter>Header Files</Filter>
</ClInclude>
<ClInclude Include="Horse.h">
<Filter>Header Files</Filter>
</ClInclude>
<ClInclude Include="GuineaPig.h">
<Filter>Header Files</Filter>
</ClInclude>
</ItemGroup>
<ItemGroup>
<ClCompile Include="Task1.cpp">
<Filter>Source Files</Filter>
</ClCompile>
<ClCompile Include="Main.cpp">
<Filter>Source Files</Filter>
</ClCompile>
<ClCompile Include="Mammal.cpp">
<Filter>Source Files</Filter>
</ClCompile>
<ClCompile Include="Dog.cpp">
<Filter>Source Files</Filter>
</ClCompile>
<ClCompile Include="Cat.cpp">
<Filter>Source Files</Filter>
</ClCompile>
<ClCompile Include="Horse.cpp">
<Filter>Source Files</Filter>
</ClCompile>
<ClCompile Include="GuineaPig.cpp">
<Filter>Source Files</Filter>
</ClCompile>
</ItemGroup>
</Project>
Loading

0 comments on commit acc9672

Please sign in to comment.