-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathmain.cpp
More file actions
36 lines (28 loc) · 796 Bytes
/
main.cpp
File metadata and controls
36 lines (28 loc) · 796 Bytes
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
#define _CRT_SECURE_NO_WARNINGS
/*
Test Build 2014.06.20
-Added Report class
-Added InventoryBook class
-Minor changes to base Book class
-Added ctime library functions
-Removed date strings from sample_books.txt
-Modified Inventory class to use InventoryBook objects
-Edit and delete functions of Inventory need to be rewritten
-Currently does not compile with VS 2010
2014.06.24
-Added RingUp class for cashier module functionality
-Fixed text file encoding in sample_books.txt
*/
#include <iostream>
#include <string>
#include "Inventory.h"
#include "MainModule.h"
using namespace std;
int main(void)
{
Inventory database;
MainModule m(&database);
m.Run();
database.writeToFile();
return 0;
}