Project Structure
This commit is contained in:
@@ -0,0 +1,31 @@
|
|||||||
|
|
||||||
|
Microsoft Visual Studio Solution File, Format Version 12.00
|
||||||
|
# Visual Studio Version 17
|
||||||
|
VisualStudioVersion = 17.14.36811.4 d17.14
|
||||||
|
MinimumVisualStudioVersion = 10.0.40219.1
|
||||||
|
Project("{8BC9CEB8-8B4A-11D0-8D11-00A0C91BC942}") = "Trenser.FoodDeliveryApp", "Trenser.FoodDeliveryApp\Trenser.FoodDeliveryApp.vcxproj", "{CE198EC0-7BC4-4E30-9FB9-F0F07FAE7284}"
|
||||||
|
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
|
||||||
|
{CE198EC0-7BC4-4E30-9FB9-F0F07FAE7284}.Debug|x64.ActiveCfg = Debug|x64
|
||||||
|
{CE198EC0-7BC4-4E30-9FB9-F0F07FAE7284}.Debug|x64.Build.0 = Debug|x64
|
||||||
|
{CE198EC0-7BC4-4E30-9FB9-F0F07FAE7284}.Debug|x86.ActiveCfg = Debug|Win32
|
||||||
|
{CE198EC0-7BC4-4E30-9FB9-F0F07FAE7284}.Debug|x86.Build.0 = Debug|Win32
|
||||||
|
{CE198EC0-7BC4-4E30-9FB9-F0F07FAE7284}.Release|x64.ActiveCfg = Release|x64
|
||||||
|
{CE198EC0-7BC4-4E30-9FB9-F0F07FAE7284}.Release|x64.Build.0 = Release|x64
|
||||||
|
{CE198EC0-7BC4-4E30-9FB9-F0F07FAE7284}.Release|x86.ActiveCfg = Release|Win32
|
||||||
|
{CE198EC0-7BC4-4E30-9FB9-F0F07FAE7284}.Release|x86.Build.0 = Release|Win32
|
||||||
|
EndGlobalSection
|
||||||
|
GlobalSection(SolutionProperties) = preSolution
|
||||||
|
HideSolutionNode = FALSE
|
||||||
|
EndGlobalSection
|
||||||
|
GlobalSection(ExtensibilityGlobals) = postSolution
|
||||||
|
SolutionGuid = {9ACACDFE-8AF9-4345-9AB5-3A28E6D1CE82}
|
||||||
|
EndGlobalSection
|
||||||
|
EndGlobal
|
||||||
@@ -0,0 +1 @@
|
|||||||
|
#include "Address.h"
|
||||||
@@ -0,0 +1,5 @@
|
|||||||
|
#pragma once
|
||||||
|
class Address
|
||||||
|
{
|
||||||
|
};
|
||||||
|
|
||||||
@@ -0,0 +1 @@
|
|||||||
|
#include "Customer.h"
|
||||||
@@ -0,0 +1,6 @@
|
|||||||
|
#pragma once
|
||||||
|
#include "User.h"
|
||||||
|
class Customer : public User
|
||||||
|
{
|
||||||
|
};
|
||||||
|
|
||||||
@@ -0,0 +1 @@
|
|||||||
|
#include "CustomerMenu.h"
|
||||||
@@ -0,0 +1,6 @@
|
|||||||
|
#pragma once
|
||||||
|
#include "Menu.h"
|
||||||
|
class CustomerMenu : public Menu
|
||||||
|
{
|
||||||
|
};
|
||||||
|
|
||||||
@@ -0,0 +1 @@
|
|||||||
|
#include "DeliveryAssignment.h"
|
||||||
@@ -0,0 +1,5 @@
|
|||||||
|
#pragma once
|
||||||
|
class DeliveryAssignment
|
||||||
|
{
|
||||||
|
};
|
||||||
|
|
||||||
@@ -0,0 +1 @@
|
|||||||
|
#include "DeliveryPartner.h"
|
||||||
@@ -0,0 +1,6 @@
|
|||||||
|
#pragma once
|
||||||
|
#include "User.h"
|
||||||
|
class DeliveryPartner : public User
|
||||||
|
{
|
||||||
|
};
|
||||||
|
|
||||||
@@ -0,0 +1 @@
|
|||||||
|
#include "DeliveryPartnerMenu.h"
|
||||||
@@ -0,0 +1,6 @@
|
|||||||
|
#pragma once
|
||||||
|
#include "Menu.h"
|
||||||
|
class DeliveryPartnerMenu : public Menu
|
||||||
|
{
|
||||||
|
};
|
||||||
|
|
||||||
@@ -0,0 +1 @@
|
|||||||
|
#include "FileDatabase.h"
|
||||||
@@ -0,0 +1,5 @@
|
|||||||
|
#pragma once
|
||||||
|
class FileDatabase
|
||||||
|
{
|
||||||
|
};
|
||||||
|
|
||||||
@@ -0,0 +1 @@
|
|||||||
|
#include "FoodDeliveryController.h"
|
||||||
@@ -0,0 +1,5 @@
|
|||||||
|
#pragma once
|
||||||
|
class FoodDeliveryController
|
||||||
|
{
|
||||||
|
};
|
||||||
|
|
||||||
@@ -0,0 +1 @@
|
|||||||
|
#include "Item.h"
|
||||||
@@ -0,0 +1,5 @@
|
|||||||
|
#pragma once
|
||||||
|
class Item
|
||||||
|
{
|
||||||
|
};
|
||||||
|
|
||||||
@@ -0,0 +1 @@
|
|||||||
|
#include "Menu.h"
|
||||||
@@ -0,0 +1,5 @@
|
|||||||
|
#pragma once
|
||||||
|
class Menu
|
||||||
|
{
|
||||||
|
};
|
||||||
|
|
||||||
@@ -0,0 +1 @@
|
|||||||
|
#include "MenuItem.h"
|
||||||
@@ -0,0 +1,5 @@
|
|||||||
|
#pragma once
|
||||||
|
class MenuItem
|
||||||
|
{
|
||||||
|
};
|
||||||
|
|
||||||
@@ -0,0 +1 @@
|
|||||||
|
#include "Order.h"
|
||||||
@@ -0,0 +1,5 @@
|
|||||||
|
#pragma once
|
||||||
|
class Order
|
||||||
|
{
|
||||||
|
};
|
||||||
|
|
||||||
@@ -0,0 +1 @@
|
|||||||
|
#include "Restaurant.h"
|
||||||
@@ -0,0 +1,5 @@
|
|||||||
|
#pragma once
|
||||||
|
class Restaurant
|
||||||
|
{
|
||||||
|
};
|
||||||
|
|
||||||
@@ -0,0 +1 @@
|
|||||||
|
#include "RestaurantOwner.h"
|
||||||
@@ -0,0 +1,5 @@
|
|||||||
|
#pragma once
|
||||||
|
#include "User.h"
|
||||||
|
class RestaurantOwner : public User
|
||||||
|
{
|
||||||
|
};
|
||||||
@@ -0,0 +1 @@
|
|||||||
|
#include "RestaurantOwnerMenu.h"
|
||||||
@@ -0,0 +1,6 @@
|
|||||||
|
#pragma once
|
||||||
|
#include "Menu.h"
|
||||||
|
class RestaurantOwnerMenu : public Menu
|
||||||
|
{
|
||||||
|
};
|
||||||
|
|
||||||
@@ -0,0 +1,5 @@
|
|||||||
|
/* Trenser.FoodDeliveryApp.cpp
|
||||||
|
Author: Joel Mathew Thomas
|
||||||
|
Date: 17-02-2026
|
||||||
|
*/
|
||||||
|
|
||||||
@@ -0,0 +1,165 @@
|
|||||||
|
<?xml version="1.0" encoding="utf-8"?>
|
||||||
|
<Project DefaultTargets="Build" 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">
|
||||||
|
<VCProjectVersion>17.0</VCProjectVersion>
|
||||||
|
<Keyword>Win32Proj</Keyword>
|
||||||
|
<ProjectGuid>{ce198ec0-7bc4-4e30-9fb9-f0f07fae7284}</ProjectGuid>
|
||||||
|
<RootNamespace>TrenserFoodDeliveryApp</RootNamespace>
|
||||||
|
<WindowsTargetPlatformVersion>10.0</WindowsTargetPlatformVersion>
|
||||||
|
</PropertyGroup>
|
||||||
|
<Import Project="$(VCTargetsPath)\Microsoft.Cpp.Default.props" />
|
||||||
|
<PropertyGroup Condition="'$(Configuration)|$(Platform)'=='Debug|Win32'" Label="Configuration">
|
||||||
|
<ConfigurationType>Application</ConfigurationType>
|
||||||
|
<UseDebugLibraries>true</UseDebugLibraries>
|
||||||
|
<PlatformToolset>v143</PlatformToolset>
|
||||||
|
<CharacterSet>Unicode</CharacterSet>
|
||||||
|
</PropertyGroup>
|
||||||
|
<PropertyGroup Condition="'$(Configuration)|$(Platform)'=='Release|Win32'" Label="Configuration">
|
||||||
|
<ConfigurationType>Application</ConfigurationType>
|
||||||
|
<UseDebugLibraries>false</UseDebugLibraries>
|
||||||
|
<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>v143</PlatformToolset>
|
||||||
|
<CharacterSet>Unicode</CharacterSet>
|
||||||
|
</PropertyGroup>
|
||||||
|
<PropertyGroup Condition="'$(Configuration)|$(Platform)'=='Release|x64'" Label="Configuration">
|
||||||
|
<ConfigurationType>Application</ConfigurationType>
|
||||||
|
<UseDebugLibraries>false</UseDebugLibraries>
|
||||||
|
<PlatformToolset>v143</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" />
|
||||||
|
<ItemDefinitionGroup Condition="'$(Configuration)|$(Platform)'=='Debug|Win32'">
|
||||||
|
<ClCompile>
|
||||||
|
<WarningLevel>Level3</WarningLevel>
|
||||||
|
<SDLCheck>true</SDLCheck>
|
||||||
|
<PreprocessorDefinitions>WIN32;_DEBUG;_CONSOLE;%(PreprocessorDefinitions)</PreprocessorDefinitions>
|
||||||
|
<ConformanceMode>true</ConformanceMode>
|
||||||
|
</ClCompile>
|
||||||
|
<Link>
|
||||||
|
<SubSystem>Console</SubSystem>
|
||||||
|
<GenerateDebugInformation>true</GenerateDebugInformation>
|
||||||
|
</Link>
|
||||||
|
</ItemDefinitionGroup>
|
||||||
|
<ItemDefinitionGroup Condition="'$(Configuration)|$(Platform)'=='Release|Win32'">
|
||||||
|
<ClCompile>
|
||||||
|
<WarningLevel>Level3</WarningLevel>
|
||||||
|
<FunctionLevelLinking>true</FunctionLevelLinking>
|
||||||
|
<IntrinsicFunctions>true</IntrinsicFunctions>
|
||||||
|
<SDLCheck>true</SDLCheck>
|
||||||
|
<PreprocessorDefinitions>WIN32;NDEBUG;_CONSOLE;%(PreprocessorDefinitions)</PreprocessorDefinitions>
|
||||||
|
<ConformanceMode>true</ConformanceMode>
|
||||||
|
</ClCompile>
|
||||||
|
<Link>
|
||||||
|
<SubSystem>Console</SubSystem>
|
||||||
|
<GenerateDebugInformation>true</GenerateDebugInformation>
|
||||||
|
</Link>
|
||||||
|
</ItemDefinitionGroup>
|
||||||
|
<ItemDefinitionGroup Condition="'$(Configuration)|$(Platform)'=='Debug|x64'">
|
||||||
|
<ClCompile>
|
||||||
|
<WarningLevel>Level3</WarningLevel>
|
||||||
|
<SDLCheck>true</SDLCheck>
|
||||||
|
<PreprocessorDefinitions>_DEBUG;_CONSOLE;%(PreprocessorDefinitions)</PreprocessorDefinitions>
|
||||||
|
<ConformanceMode>true</ConformanceMode>
|
||||||
|
</ClCompile>
|
||||||
|
<Link>
|
||||||
|
<SubSystem>Console</SubSystem>
|
||||||
|
<GenerateDebugInformation>true</GenerateDebugInformation>
|
||||||
|
</Link>
|
||||||
|
</ItemDefinitionGroup>
|
||||||
|
<ItemDefinitionGroup Condition="'$(Configuration)|$(Platform)'=='Release|x64'">
|
||||||
|
<ClCompile>
|
||||||
|
<WarningLevel>Level3</WarningLevel>
|
||||||
|
<FunctionLevelLinking>true</FunctionLevelLinking>
|
||||||
|
<IntrinsicFunctions>true</IntrinsicFunctions>
|
||||||
|
<SDLCheck>true</SDLCheck>
|
||||||
|
<PreprocessorDefinitions>NDEBUG;_CONSOLE;%(PreprocessorDefinitions)</PreprocessorDefinitions>
|
||||||
|
<ConformanceMode>true</ConformanceMode>
|
||||||
|
</ClCompile>
|
||||||
|
<Link>
|
||||||
|
<SubSystem>Console</SubSystem>
|
||||||
|
<GenerateDebugInformation>true</GenerateDebugInformation>
|
||||||
|
</Link>
|
||||||
|
</ItemDefinitionGroup>
|
||||||
|
<ItemGroup>
|
||||||
|
<ClCompile Include="Address.cpp" />
|
||||||
|
<ClCompile Include="Customer.cpp" />
|
||||||
|
<ClCompile Include="CustomerMenu.cpp" />
|
||||||
|
<ClCompile Include="DeliveryAssignment.cpp" />
|
||||||
|
<ClCompile Include="DeliveryPartner.cpp" />
|
||||||
|
<ClCompile Include="DeliveryPartnerMenu.cpp" />
|
||||||
|
<ClCompile Include="FileDatabase.cpp" />
|
||||||
|
<ClCompile Include="FoodDeliveryController.cpp" />
|
||||||
|
<ClCompile Include="Item.cpp" />
|
||||||
|
<ClCompile Include="Menu.cpp" />
|
||||||
|
<ClCompile Include="MenuItem.cpp" />
|
||||||
|
<ClCompile Include="Order.cpp" />
|
||||||
|
<ClCompile Include="Restaurant.cpp" />
|
||||||
|
<ClCompile Include="RestaurantOwner.cpp" />
|
||||||
|
<ClCompile Include="RestaurantOwnerMenu.cpp" />
|
||||||
|
<ClCompile Include="Trenser.FoodDeliveryApp.cpp" />
|
||||||
|
<ClCompile Include="User.cpp" />
|
||||||
|
</ItemGroup>
|
||||||
|
<ItemGroup>
|
||||||
|
<ClInclude Include="Address.h" />
|
||||||
|
<ClInclude Include="Customer.h" />
|
||||||
|
<ClInclude Include="CustomerMenu.h" />
|
||||||
|
<ClInclude Include="DeliveryAssignment.h" />
|
||||||
|
<ClInclude Include="DeliveryPartner.h" />
|
||||||
|
<ClInclude Include="DeliveryPartnerMenu.h" />
|
||||||
|
<ClInclude Include="FileDatabase.h" />
|
||||||
|
<ClInclude Include="FoodDeliveryController.h" />
|
||||||
|
<ClInclude Include="Item.h" />
|
||||||
|
<ClInclude Include="Menu.h" />
|
||||||
|
<ClInclude Include="MenuItem.h" />
|
||||||
|
<ClInclude Include="Order.h" />
|
||||||
|
<ClInclude Include="Restaurant.h" />
|
||||||
|
<ClInclude Include="RestaurantOwner.h" />
|
||||||
|
<ClInclude Include="RestaurantOwnerMenu.h" />
|
||||||
|
<ClInclude Include="User.h" />
|
||||||
|
</ItemGroup>
|
||||||
|
<Import Project="$(VCTargetsPath)\Microsoft.Cpp.targets" />
|
||||||
|
<ImportGroup Label="ExtensionTargets">
|
||||||
|
</ImportGroup>
|
||||||
|
</Project>
|
||||||
+132
@@ -0,0 +1,132 @@
|
|||||||
|
<?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;c++;cppm;ixx;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;h++;hm;inl;inc;ipp;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>
|
||||||
|
<Filter Include="Models">
|
||||||
|
<UniqueIdentifier>{098bbd02-c9f1-493f-9b7c-41553c30cbe9}</UniqueIdentifier>
|
||||||
|
</Filter>
|
||||||
|
<Filter Include="Utility">
|
||||||
|
<UniqueIdentifier>{b83e2565-59ef-4bd1-9b34-10701fa12d65}</UniqueIdentifier>
|
||||||
|
</Filter>
|
||||||
|
<Filter Include="Files">
|
||||||
|
<UniqueIdentifier>{2aa6ff11-4e77-452b-8a54-b6fbf8972e51}</UniqueIdentifier>
|
||||||
|
</Filter>
|
||||||
|
<Filter Include="Controller">
|
||||||
|
<UniqueIdentifier>{5fe156d7-35f3-40d6-b6bb-d97d43d64358}</UniqueIdentifier>
|
||||||
|
</Filter>
|
||||||
|
</ItemGroup>
|
||||||
|
<ItemGroup>
|
||||||
|
<ClCompile Include="Address.cpp">
|
||||||
|
<Filter>Models</Filter>
|
||||||
|
</ClCompile>
|
||||||
|
<ClCompile Include="Customer.cpp">
|
||||||
|
<Filter>Models</Filter>
|
||||||
|
</ClCompile>
|
||||||
|
<ClCompile Include="CustomerMenu.cpp">
|
||||||
|
<Filter>Models</Filter>
|
||||||
|
</ClCompile>
|
||||||
|
<ClCompile Include="DeliveryAssignment.cpp">
|
||||||
|
<Filter>Models</Filter>
|
||||||
|
</ClCompile>
|
||||||
|
<ClCompile Include="DeliveryPartner.cpp">
|
||||||
|
<Filter>Models</Filter>
|
||||||
|
</ClCompile>
|
||||||
|
<ClCompile Include="DeliveryPartnerMenu.cpp">
|
||||||
|
<Filter>Models</Filter>
|
||||||
|
</ClCompile>
|
||||||
|
<ClCompile Include="Item.cpp">
|
||||||
|
<Filter>Models</Filter>
|
||||||
|
</ClCompile>
|
||||||
|
<ClCompile Include="Menu.cpp">
|
||||||
|
<Filter>Models</Filter>
|
||||||
|
</ClCompile>
|
||||||
|
<ClCompile Include="MenuItem.cpp">
|
||||||
|
<Filter>Models</Filter>
|
||||||
|
</ClCompile>
|
||||||
|
<ClCompile Include="Order.cpp">
|
||||||
|
<Filter>Models</Filter>
|
||||||
|
</ClCompile>
|
||||||
|
<ClCompile Include="Restaurant.cpp">
|
||||||
|
<Filter>Models</Filter>
|
||||||
|
</ClCompile>
|
||||||
|
<ClCompile Include="RestaurantOwner.cpp">
|
||||||
|
<Filter>Models</Filter>
|
||||||
|
</ClCompile>
|
||||||
|
<ClCompile Include="RestaurantOwnerMenu.cpp">
|
||||||
|
<Filter>Models</Filter>
|
||||||
|
</ClCompile>
|
||||||
|
<ClCompile Include="User.cpp">
|
||||||
|
<Filter>Models</Filter>
|
||||||
|
</ClCompile>
|
||||||
|
<ClCompile Include="FileDatabase.cpp">
|
||||||
|
<Filter>Utility</Filter>
|
||||||
|
</ClCompile>
|
||||||
|
<ClCompile Include="Trenser.FoodDeliveryApp.cpp">
|
||||||
|
<Filter>Source Files</Filter>
|
||||||
|
</ClCompile>
|
||||||
|
<ClCompile Include="FoodDeliveryController.cpp">
|
||||||
|
<Filter>Controller</Filter>
|
||||||
|
</ClCompile>
|
||||||
|
</ItemGroup>
|
||||||
|
<ItemGroup>
|
||||||
|
<ClInclude Include="Address.h">
|
||||||
|
<Filter>Models</Filter>
|
||||||
|
</ClInclude>
|
||||||
|
<ClInclude Include="Customer.h">
|
||||||
|
<Filter>Models</Filter>
|
||||||
|
</ClInclude>
|
||||||
|
<ClInclude Include="CustomerMenu.h">
|
||||||
|
<Filter>Models</Filter>
|
||||||
|
</ClInclude>
|
||||||
|
<ClInclude Include="DeliveryAssignment.h">
|
||||||
|
<Filter>Models</Filter>
|
||||||
|
</ClInclude>
|
||||||
|
<ClInclude Include="DeliveryPartner.h">
|
||||||
|
<Filter>Models</Filter>
|
||||||
|
</ClInclude>
|
||||||
|
<ClInclude Include="DeliveryPartnerMenu.h">
|
||||||
|
<Filter>Models</Filter>
|
||||||
|
</ClInclude>
|
||||||
|
<ClInclude Include="Item.h">
|
||||||
|
<Filter>Models</Filter>
|
||||||
|
</ClInclude>
|
||||||
|
<ClInclude Include="Menu.h">
|
||||||
|
<Filter>Models</Filter>
|
||||||
|
</ClInclude>
|
||||||
|
<ClInclude Include="MenuItem.h">
|
||||||
|
<Filter>Models</Filter>
|
||||||
|
</ClInclude>
|
||||||
|
<ClInclude Include="Order.h">
|
||||||
|
<Filter>Models</Filter>
|
||||||
|
</ClInclude>
|
||||||
|
<ClInclude Include="Restaurant.h">
|
||||||
|
<Filter>Models</Filter>
|
||||||
|
</ClInclude>
|
||||||
|
<ClInclude Include="RestaurantOwner.h">
|
||||||
|
<Filter>Models</Filter>
|
||||||
|
</ClInclude>
|
||||||
|
<ClInclude Include="RestaurantOwnerMenu.h">
|
||||||
|
<Filter>Models</Filter>
|
||||||
|
</ClInclude>
|
||||||
|
<ClInclude Include="User.h">
|
||||||
|
<Filter>Models</Filter>
|
||||||
|
</ClInclude>
|
||||||
|
<ClInclude Include="FileDatabase.h">
|
||||||
|
<Filter>Utility</Filter>
|
||||||
|
</ClInclude>
|
||||||
|
<ClInclude Include="FoodDeliveryController.h">
|
||||||
|
<Filter>Controller</Filter>
|
||||||
|
</ClInclude>
|
||||||
|
</ItemGroup>
|
||||||
|
</Project>
|
||||||
@@ -0,0 +1 @@
|
|||||||
|
#include "User.h"
|
||||||
@@ -0,0 +1,5 @@
|
|||||||
|
#pragma once
|
||||||
|
class User
|
||||||
|
{
|
||||||
|
};
|
||||||
|
|
||||||
Reference in New Issue
Block a user