From 3c8228aa271137e59b7365a70672a27a392ad8b9 Mon Sep 17 00:00:00 2001 From: William Bracho Blok Date: Tue, 6 Oct 2015 00:09:38 -0500 Subject: [PATCH] Delete DBApp.cpp --- DBApp.cpp | 40 ---------------------------------------- 1 file changed, 40 deletions(-) delete mode 100755 DBApp.cpp diff --git a/DBApp.cpp b/DBApp.cpp deleted file mode 100755 index 50c8918..0000000 --- a/DBApp.cpp +++ /dev/null @@ -1,40 +0,0 @@ -#include // std::string -#include // std::cout -#include // std::stringstream -#include -#include -#include "Parser.h" -#include "DBEngine.h" - -using namespace std; -/* -int main() -{ - cout << "**********************" << endl; - cout << "* Generic Restaurant *" << endl; - cout << "**********************" << endl; - cout << "- Login -" << endl; - cout << "1. Login" << endl; - cout << "2. Request new account" << endl; - cout << "Enter coice: "; - int n; - cin >> n; - string u; - string p; - switch(n) - { - case 1: cout << "- Login -" << endl; - cout << "Enter username: "; - cin >> u; - cout << "Enter password: "; - cin >> p; - // implement user database. - break; - case 2: cout << "Not implemented." << endl; - break; // not implemented. - default: cout << "Not an option." << endl; - return 0; - } - -} -*/