Update DBApp.cpp

This commit is contained in:
William Bracho Blok 2015-09-29 22:20:01 -05:00
parent 85b00fc497
commit 948224c1a0

View file

@ -37,51 +37,4 @@ int main()
}
}
void yourAccount()
{
cout<<"name: yourName"<<endl;
}
void mainMenu()
{
cout<<"***************"<<endl;
cout<<"** Main Menu **"<<endl;
cout<<"***************\n\n"<<endl;
cout<<"1. Your account"<<endl;
cout<<"2. Boards"<<endl;
cout<<"3. Messages"<<endl;
cout<<"4. Groups\n"<<endl;
cout<<"Enter choice: ";
int choice;
cin>>choice;
if (choice == 1)
{
yourAccount();
}
}
int main()
{
cout<<"***************************************"<<endl;
cout<<"Welcome to our BBS "<<endl;
cout<<"***************************************"<<endl;
cout<<"** Enter BBS **"<<endl;
cout<<"1. Login";
cout<<"2. Request new account\n\n";
cout<<"Enter choice";
int choice;
cin>>choice;
if (choice == 1)
{
mainMenu();
}
}
*/