-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy pathHome.cpp
27 lines (25 loc) · 790 Bytes
/
Home.cpp
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
#include "Home.h"
#include "ShowResturants.h"
#include "Globals.h"
#include "Login_signup.h"
#include "ResturantMenu.h"
#include "manger.h"
#include "MyAccount.h"
using namespace System;
using namespace System::Windows::Forms;
using namespace Global;
[STAThread]
int Main(array<String^>^ args)
{
Application::EnableVisualStyles();
Application::SetCompatibleTextRenderingDefault(0);
OOP_Otlob_Project::Home form;
glo::home = gcnew OOP_Otlob_Project::Home();
glo::showresturant = gcnew OOP_Otlob_Project::ShowResturants() ;
glo::Login_signup = gcnew OOP_Otlob_Project::Login_signup();
glo::Menus = gcnew OOP_Otlob_Project::ResturantMenu();
glo::Admin = gcnew OOP_Otlob_Project::manger();
glo::MyAccount = gcnew OOP_Otlob_Project::MyAccount();
Application::Run(%form);
return 0;
}