forked from siddheshkothadi/Product-Billing-System
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathMain.cpp
More file actions
1173 lines (1007 loc) · 24 KB
/
Main.cpp
File metadata and controls
1173 lines (1007 loc) · 24 KB
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
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
546
547
548
549
550
551
552
553
554
555
556
557
558
559
560
561
562
563
564
565
566
567
568
569
570
571
572
573
574
575
576
577
578
579
580
581
582
583
584
585
586
587
588
589
590
591
592
593
594
595
596
597
598
599
600
601
602
603
604
605
606
607
608
609
610
611
612
613
614
615
616
617
618
619
620
621
622
623
624
625
626
627
628
629
630
631
632
633
634
635
636
637
638
639
640
641
642
643
644
645
646
647
648
649
650
651
652
653
654
655
656
657
658
659
660
661
662
663
664
665
666
667
668
669
670
671
672
673
674
675
676
677
678
679
680
681
682
683
684
685
686
687
688
689
690
691
692
693
694
695
696
697
698
699
700
701
702
703
704
705
706
707
708
709
710
711
712
713
714
715
716
717
718
719
720
721
722
723
724
725
726
727
728
729
730
731
732
733
734
735
736
737
738
739
740
741
742
743
744
745
746
747
748
749
750
751
752
753
754
755
756
757
758
759
760
761
762
763
764
765
766
767
768
769
770
771
772
773
774
775
776
777
778
779
780
781
782
783
784
785
786
787
788
789
790
791
792
793
794
795
796
797
798
799
800
801
802
803
804
805
806
807
808
809
810
811
812
813
814
815
816
817
818
819
820
821
822
823
824
825
826
827
828
829
830
831
832
833
834
835
836
837
838
839
840
841
842
843
844
845
846
847
848
849
850
851
852
853
854
855
856
857
858
859
860
861
862
863
864
865
866
867
868
869
870
871
872
873
874
875
876
877
878
879
880
881
882
883
884
885
886
887
888
889
890
891
892
893
894
895
896
897
898
899
900
901
902
903
904
905
906
907
908
909
910
911
912
913
914
915
916
917
918
919
920
921
922
923
924
925
926
927
928
929
930
931
932
933
934
935
936
937
938
939
940
941
942
943
944
945
946
947
948
949
950
951
952
953
954
955
956
957
958
959
960
961
962
963
964
965
966
967
968
969
970
971
972
973
974
975
976
977
978
979
980
981
982
983
984
985
986
987
988
989
990
991
992
993
994
995
996
997
998
999
1000
/** == List of Contributors ==
* 1. Siddhesh
* 2. Mayank
* 3. Amrut
* 4. Ekta
**/
#include <iostream> // For Standard Input-Output Stream
#include <fstream> // For File Handilng
#include <string> // For String Operations
#include <vector> // Container used for storing collection of [Item] and [OrderHistory]
#include <ctime> // To generate Date and Time while Placing Order
using namespace std;
/** Enum class representing state of the User **/
enum class UserState
{
CUSTOMER,
SHOP,
LOGGED_OUT
};
// [Item] class represents a single Item
class Item
{
private:
string name;
float price;
unsigned int quantity;
public:
// Default Constructor
Item()
{
name = "NULL";
price = 0;
quantity = 0;
}
// Parameterized constructor
Item(string n, float p, int q)
{
name = n;
price = p;
quantity = q;
}
// To take the input from the user
void takeInput();
/** Getters for Data Members **/
string getName()
{
return name;
}
int getPrice()
{
return price;
}
int getQuantity()
{
return quantity;
}
// To display the item information
void showItem();
/** To reduce the quantity of item by the provided amount
* @return true if quantity can be reduced
* else @return false
*/
bool reduceQuantity(int amount)
{
if (quantity >= amount)
{
quantity -= amount;
// Return true if quantity can be reduced
return true;
}
cout << "\n\t\tRequested number of items exceeds the available quantity!";
return false;
}
/** To incresase the quantity of item by the provided amount
* @return true if quantity can be increased
* else @return false
*/
bool increaseQuantity(int amount)
{
if (amount >= 0)
{
quantity += amount;
return true;
}
return false;
}
/**Overloaded insertion operator
* Writes an item to the file
*/
friend ostream &operator<<(ostream &out, Item &item)
{
out << item.name << "\n"
<< item.price << "\n"
<< item.quantity << endl;
return out;
}
/**Overloaded extraction operator
* Reads an item from the file
*/
friend istream &operator>>(istream &in, Item &item)
{
in >> item.name;
in >> item.price;
in >> item.quantity;
return in;
}
};
// To take the input from the user
void Item ::takeInput()
{
cout << "\n\t\tEnter Name of Item: ";
cin >> name;
cout << "\n\t\tEnter Price of Item: ";
cin >> price;
cout << "\n\t\tEnter Quantity of Item: ";
cin >> quantity;
}
// To display the item information
void Item::showItem()
{
cout << "\t\t\t\t" << name << "\t" << price << "\t" << quantity << endl;
}
/**
* [OrderHistory] represents the summary of the placed order
*/
class OrderHistory
{
private:
int numberOfItems;
int totalBillAmount;
tm *localTime;
time_t now;
int day;
int month;
int year;
public:
// Default Constructor
OrderHistory()
{
numberOfItems = 0;
totalBillAmount = 0;
now = time(0);
localTime = localtime(&now);
day = localTime->tm_mday;
month = localTime->tm_mon + 1;
year = localTime->tm_year + 1900;
}
// Parameterized Constructor
OrderHistory(int noOfItems, int billAmount)
{
numberOfItems = noOfItems;
totalBillAmount = billAmount;
now = time(0);
localTime = localtime(&now);
day = localTime->tm_mday;
month = localTime->tm_mon + 1;
year = localTime->tm_year + 1900;
}
// Displays the order history
void showOrderHistory();
/**Overloaded insertion(<<) operator
* Writes order summary to the file
*/
friend ostream &operator<<(ostream &out, OrderHistory &order)
{
out << order.numberOfItems << "\n"
<< order.totalBillAmount << "\n"
<< order.day << "\n"
<< order.month << "\n"
<< order.year << endl;
return out;
}
/**Overloaded extraction(>>) operator
* Reads order summary from the file
*/
friend istream &operator>>(istream &in, OrderHistory &order)
{
in >> order.numberOfItems;
in >> order.totalBillAmount;
in >> order.day;
in >> order.month;
in >> order.year;
return in;
}
};
// Displays the order history
void OrderHistory ::showOrderHistory()
{
cout << "\n\t\tDate : " << day << "/" << month << "/" << year;
cout << "\n\t\t\tItems Ordered = " << numberOfItems;
cout << "\n\t\t\tTotal Bill Amount = Rs. " << totalBillAmount;
}
// Class representing a Customer
class Customer
{
private:
// Unique username and password
string username;
string password;
// Contact details
string address;
unsigned long long contactNumber;
public:
// Current Cart and its size
// A vector representing the collection of [Item] i.e. cart
vector<Item> currentCart;
int CART_SIZE;
// Previous Order History and its size
// A vector representing the collection of [OrderHistory]
vector<OrderHistory> orderHistory;
int ORDER_HISTORY_SIZE;
// Default Constructor
Customer()
{
username = "NULL";
password = "NULL";
address = "NULL";
contactNumber = 0;
CART_SIZE = 0;
currentCart = vector<Item>();
ORDER_HISTORY_SIZE = 0;
orderHistory = vector<OrderHistory>();
}
// To take input while signing up the user
void takeInput();
// Getter for username
string getUsername()
{
return username;
}
// To verify credentials while logging in
bool areValidCredentials(const string name, const string pass)
{
return ((name == username) && (pass == password));
}
// To show the customer profile
void displayProfile();
// To calculate the total bill amount and the total number of items in the cart
vector<int> calculateBill()
{
int total = 0;
int noOfItems = 0;
if (currentCart.empty())
return {0, 0};
for (Item &i : currentCart)
{
noOfItems += i.getQuantity();
total += i.getPrice() * i.getQuantity();
}
return {noOfItems, total};
}
/** ===CART OPERATIONS=== **/
// To show the items inside the cart
void showCart();
// To clear the cart
void emptyCart()
{
currentCart.clear();
CART_SIZE = 0;
}
// To display the previous order history of the customer
void viewPreviousOrderHistory();
/**Overloaded insertion(<<) operator
* Writes customer information to the file
*/
friend ostream &operator<<(ostream &out, Customer &customer)
{
out << customer.username << "\n"
<< customer.password << "\n"
<< customer.address << "\n"
<< customer.contactNumber << "\n"
<< customer.CART_SIZE << "\n";
// Cart
for (int i = 0; i < customer.CART_SIZE; ++i)
{
out << customer.currentCart[i];
}
// Order History
out << customer.ORDER_HISTORY_SIZE << "\n";
for (int i = 0; i < customer.ORDER_HISTORY_SIZE; ++i)
{
out << customer.orderHistory[i];
}
return out;
}
/**Overloaded extraction(>>) operator
* Reads customer information from the file
*/
friend istream &operator>>(istream &in, Customer &customer)
{
in >> customer.username;
in >> customer.password;
in >> customer.address;
in >> customer.contactNumber;
in >> customer.CART_SIZE;
customer.currentCart.resize(customer.CART_SIZE);
for (int i = 0; i < customer.CART_SIZE; ++i)
{
in >> customer.currentCart[i];
}
in >> customer.ORDER_HISTORY_SIZE;
customer.orderHistory.resize(customer.ORDER_HISTORY_SIZE);
for (int i = 0; i < customer.ORDER_HISTORY_SIZE; ++i)
{
in >> customer.orderHistory[i];
}
return in;
}
};
// To take input while signing up the user
void Customer ::takeInput()
{
cout << "\n\tEnter Username: ";
cin >> username;
cout << "\n\tEnter password: ";
cin >> password;
cout << "\n\tEnter address: ";
cin >> address;
cout << "\n\tEnter your contact number: ";
cin >> contactNumber;
}
// To show the customer profile
void Customer::displayProfile()
{
cout << "\n\tUsername : " << username << "\n\tAddress : " << address << "\n\tContact Number : " << contactNumber << "\n";
}
// To show the items inside the cart
void Customer::showCart()
{
if (currentCart.empty())
{
cout << "\n\t\tThe cart is empty :)\n";
return;
}
cout << "\n\t\t\t\t======== CART ========"
<< "\n\n\t\t\t\tName"
<< "\tPrice\t"
<< "Quantity\t" << endl;
for (Item i : currentCart)
{
i.showItem();
}
vector<int> bill = calculateBill();
cout << "\n\n\t\t\tTotal Items : " << bill[0];
cout << "\n\t\t\tTotal Bill Amount : Rs. " << bill[1] << endl;
}
// To display the previous order history of the customer
void Customer::viewPreviousOrderHistory()
{
if (orderHistory.empty())
{
cout << "\n\t\tNo previous order history found :)\n";
}
for (OrderHistory &order : orderHistory)
{
order.showOrderHistory();
cout << "\n";
}
}
// Class representing the account of the shop
// [ShopAccount] can modify the item database
class ShopAccount
{
private:
string shopID;
string password;
public:
// Default Constructor to initialize the values
ShopAccount()
{
shopID = "NULL";
password = "NULL";
}
/** To validate the credentials entered by the user
* @return true if credentials are correct
* else @return false
*/
bool areValidCredentials(string &sID, string &p)
{
return ((sID == shopID) && (p == password));
}
/**Overloaded extraction operator(>>)
* To read shop credentials from the file
*/
friend istream &operator>>(istream &in, ShopAccount &shopAccount)
{
in >> shopAccount.shopID;
in >> shopAccount.password;
return in;
}
};
// This class handles all the database realted operations of Items database
class Items
{
public:
/** In the database, search for the item with the provided name
* If found, @return the [Item]
* else @return NULL
*/
Item *searchItem(string &n)
{
ifstream fileItem;
fileItem.open("db/Items.txt", ios::in);
Item *item = new Item();
while (fileItem >> *item)
{
if (item->getName() == n)
{
// Item Found
fileItem.close();
return item;
}
}
// Item Not Found
fileItem.close();
return NULL;
}
// To add the item to the Items database
void addItem();
// To modify an item from the Items database
void modifyItem(string key);
// To delete an item from the Items database
void deleteItem(string key);
// To display a list of available items
void displayItem();
/** To reduce quantity of the provided [Item] by @param quantity
* If the quantity can be reduced, reduce the quantity and @return true
* else @return false
*/
bool reduceQuantity(Item *itemToReduce, int quantity);
/** To increase quantity of the provided [Item] by @param quantity
* If the quantity can be increased, increase the quantity and @return true
* else @return false
*/
bool increaseQuantity(Item *itemToIncrease, int quantity);
};
// To add the item to the Items database
void Items ::addItem()
{
Item item;
string itemName;
ofstream itemFile;
bool itemAlreadyExists = 1;
itemFile.open("db/Items.txt", ios::app);
while (itemAlreadyExists)
{
item.takeInput();
itemName = item.getName();
if (searchItem(itemName) != NULL)
{
// Item already exists
cout << "\n\t\tItem already exists!"
<< "\n\t\tPlease add a unique item!\n";
}
else
{
// If the item name is unique, end the loop
itemAlreadyExists = 0;
}
}
itemFile << item;
itemFile.close();
}
// To modify an item from the Items database
void Items ::modifyItem(string key)
{
//bool found = searchItem(key);
bool found;
if (searchItem(key) != NULL)
{
found = 1;
}
else
{
found = 0;
}
if (found)
{
deleteItem(key);
addItem();
}
else
{
cout << "\n\t\tItem not found";
}
}
// To delete an item from the Items database
void Items::deleteItem(string key)
{
ifstream old_file;
ofstream new_file;
Item item;
old_file.open("db/Items.txt");
new_file.open("db/Temp.txt");
while (old_file >> item)
{
if (item.getName() != key)
{
new_file << item;
}
}
old_file.close();
new_file.close();
remove("db/Items.txt");
rename("db/Temp.txt", "db/Items.txt");
}
// To display a list of available items
void Items::displayItem()
{
ifstream fileItem;
fileItem.open("db/Items.txt", ios::in);
Item item;
cout << "\n\t\t\t\tName"
<< "\tPrice\t"
<< "Quantity\t\n"
<< endl;
while (fileItem >> item)
{
item.showItem();
}
fileItem.close();
}
bool Items::reduceQuantity(Item *itemToReduce, int quantity)
{
ifstream old_file;
ofstream new_file;
Item item;
bool reduced = false;
old_file.open("db/Items.txt");
new_file.open("db/Temp.txt");
while (old_file >> item)
{
if (item.getName() != itemToReduce->getName())
{
new_file << item;
}
else
{
reduced = item.reduceQuantity(quantity);
new_file << item;
}
}
old_file.close();
new_file.close();
remove("db/Items.txt");
rename("db/Temp.txt", "db/Items.txt");
return reduced;
}
bool Items::increaseQuantity(Item *itemToIncrease, int quantity)
{
ifstream old_file;
ofstream new_file;
Item item;
bool increased = false;
old_file.open("db/Items.txt");
new_file.open("db/Temp.txt");
while (old_file >> item)
{
if (item.getName() != itemToIncrease->getName())
{
new_file << item;
}
else
{
increased = item.increaseQuantity(quantity);
new_file << item;
}
}
old_file.close();
new_file.close();
remove("db/Items.txt");
rename("db/Temp.txt", "db/Items.txt");
return increased;
}
// A class that handles all the database operations related to Customers database
class Customers
{
private:
string key;
public:
/** Checks if a username is valid or not
* @return true if the username is not taken by anyone
* @return false if the username is already taken
**/
bool isValidUsername(string &username);
// Search and return the customer if found in the database else return NULL
Customer *searchCustomer(string &username, string &password, UserState &state)
{
ifstream file;
Customer *customer = new Customer();
file.open("db/Customers.txt", ios::in);
while (file >> *customer)
{
if (customer->areValidCredentials(username, password))
{
state = UserState::CUSTOMER;
break;
}
}
file.close();
return customer;
}
// To add a new customer to the database
bool signUpCustomer();
// To delete an account of a customer
void deleteCustomer(Customer &c);
// To add an item to the customer's cart from the items database
void addItemToCart(Customer *currentCustomer);
// To remove an item from the customer's cart and add it to the items database
void removeItemFromCart(Customer *currentCustomer);
/** Called when a customer places the order :
* 1. Generate the bill
* 2. Clear the cart
* 3. Take the order summary and place the order
*/
void placeOrder(Customer *currentCustomer);
};
bool Customers::isValidUsername(string &username)
{
ifstream file;
Customer customer;
file.open("db/Customers.txt", ios::in);
while (file >> customer)
{
if (customer.getUsername() == username)
{
file.close();
return 0;
}
}
file.close();
return 1;
}
// To add a new customer to the database
bool Customers::signUpCustomer()
{
ofstream file;
Customer customer;
bool validUsername = 0;
file.open("db/Customers.txt", ios::app);
while (!validUsername)
{
customer.takeInput();
key = customer.getUsername();
validUsername = isValidUsername(key);
if (!validUsername)
{
cout << "\n\tUsername already taken... Please enter another username!";
}
}
file << customer;
file.close();
return 1;
}
// To delete an account of a customer
void Customers::deleteCustomer(Customer &c)
{
ifstream old_file;
ofstream new_file;
Customer customer;
old_file.open("db/Customers.txt");
new_file.open("db/Temp.txt");
while (old_file >> customer)
{
if (customer.getUsername() != c.getUsername())
{
new_file << customer;
}
}
old_file.close();
new_file.close();
remove("db/Customers.txt");
rename("db/Temp.txt", "db/Customers.txt");
}
// To add an item to the customer's cart from the items database
void Customers::addItemToCart(Customer *currentCustomer)
{
ifstream old_file;
ofstream new_file;
Customer customer;
Items itemDB;
Item *itemToAdd;
bool reduced = false;
string nameOfItem;
int quantityOfItem;
cout << "Enter the name of the item to add : ";
cin >> nameOfItem;
cout << "Enter the quantiy of the item to add : ";
cin >> quantityOfItem;
// Find the item in the item's database
itemToAdd = itemDB.searchItem(nameOfItem);
// Reduce that item's quantity from the item DB
if (itemToAdd != NULL || itemToAdd->getQuantity() != 0)
{
reduced = itemDB.reduceQuantity(itemToAdd, quantityOfItem);
}
// If there's an exception while removing the item from the DB, do not add item to cart
if (!reduced)
{
cout << "\n\t\tCan't add the requested item to cart!\n";
return;
}
// If the item already exists in the cart, Increase the quantity in the cart
bool found = false;
for (Item &i : currentCustomer->currentCart)
{
if (i.getName() == nameOfItem)
{
found = true;
i.increaseQuantity(quantityOfItem);
break;
}
}
// If not found, Use the parameterized constructor to create an object of class Item
if (!found)
{
Item it = Item(nameOfItem, itemToAdd->getPrice(), quantityOfItem);
currentCustomer->currentCart.push_back(it);
currentCustomer->CART_SIZE++;
}
old_file.open("db/Customers.txt");
new_file.open("db/Temp.txt");
while (old_file >> customer)
{
if (customer.getUsername() != currentCustomer->getUsername())
{
new_file << customer;
}
else
{
// This pointer refers to the current [updated] instance of the class
new_file << *currentCustomer;
}
}
old_file.close();
new_file.close();
remove("db/Customers.txt");
rename("db/Temp.txt", "db/Customers.txt");
cout << "\n\t\t\tAdded the item to the cart!\n";
}
// To remove an item from the customer's cart and add it to the items database
void Customers::removeItemFromCart(Customer *currentCustomer)
{
ifstream old_file;
ofstream new_file;
Customer customer;
Items itemDB;
Item *itemToRemove;
bool increased = false;
string nameOfItem;
int quantityOfItem = 0;
cout << "Enter the name of the item to remove : ";
cin >> nameOfItem;
// Erase all items with than name from the cart
for (auto ptr = currentCustomer->currentCart.begin(); ptr != currentCustomer->currentCart.end(); ++ptr)
{
if (ptr->getName() == nameOfItem)
{
quantityOfItem += ptr->getQuantity();
currentCustomer->currentCart.erase(ptr--);
currentCustomer->CART_SIZE--;
}
}
// Find the item in the item's database
itemToRemove = itemDB.searchItem(nameOfItem);
// Increase its quantity
if (itemToRemove != NULL)
{
increased = itemDB.increaseQuantity(itemToRemove, quantityOfItem);
}
// If there's an exception while removing the item from the DB, do not add item to cart
if (!increased)
return;
// Update the database
old_file.open("db/Customers.txt");
new_file.open("db/Temp.txt");
while (old_file >> customer)
{
if (customer.getUsername() != currentCustomer->getUsername())
{
new_file << customer;
}
else
{
new_file << *currentCustomer;
}
}
old_file.close();
new_file.close();
remove("db/Customers.txt");
rename("db/Temp.txt", "db/Customers.txt");
}
void Customers::placeOrder(Customer *currentCustomer)
{
ifstream old_file;
ofstream new_file;
Customer customer;
// Generate the bill
vector<int> bill = currentCustomer->calculateBill();
if (bill[0] == 0)
{
cout << "\n\t\t\tYour cart is empty... can't place the order!\n";
return;
}
// Clear the cart
currentCustomer->emptyCart();
// Take the order summary and place the order
OrderHistory order(bill[0], bill[1]);
currentCustomer->orderHistory.push_back(order);
currentCustomer->ORDER_HISTORY_SIZE++;
old_file.open("db/Customers.txt");
new_file.open("db/Temp.txt");
// Update the database
while (old_file >> customer)
{
if (customer.getUsername() != currentCustomer->getUsername())
{
new_file << customer;
}
else
{
// This pointer refers to the current [updated] instance of the class
new_file << *currentCustomer;
}
}
old_file.close();
new_file.close();
remove("db/Customers.txt");
rename("db/Temp.txt", "db/Customers.txt");
cout << "\n\t\t\tOrder Placed!\n\t\t\tThank you for using Shopkart!";
}
int main()
{
// Object of class [Items]
Items i_obj;
// Initializing [Customer] pointer to null
Customer *customer = NULL;
// Initializing [ShopAccount] pointer
ShopAccount *shop = new ShopAccount();
// Creating an object of class [Customers]
Customers c_obj;
// Object of enum class [UserState]
UserState state = UserState::LOGGED_OUT;
// Initializing choice to -1
int choice = -1;
// Variables for storing the credentials entered by the user
string username, password, shopID, key;
// For reading files
ifstream file;
// Authentication Interface
while (choice)
{
if (state == UserState::LOGGED_OUT)
{
// Welcome Screen
cout << "\n\n\t\t================================================"
<< "\n\t\t********\tWELCOME TO SHOPKART\t********"
<< "\n\t\t================================================\n\n";
// Show Login Screen
cout << "\n\t1. Sign Up\t[Customer]"
<< "\n\t2. Login\t[Customer]"
<< "\n\t3. Login\t[Shop]"
<< "\n\t0. Exit"
<< "\n\n\tEnter your choice : ";