-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathms5.cpp
27 lines (26 loc) · 838 Bytes
/
ms5.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
// Final Project Milestone 5 - ErrorState Class
// Version 3.4
// ms5_tester_prof.cpp
// Date 2019-03-09
// Author Cornel, Chris Szalwinski, Fardad Soleimanloo
//
// For you final test before submission:
// DO NOT MODIFY THIS FILE IN ANY WAY
//
//
// Revision History
// --------------------------------------------------------------
// Name Date Reason
// CS 2017-10-11 Fall semester upgrade
// Chris 2018-03-02 Final Draft 20181
// Chris 2018-03-03 Message -> State
// Cornel 2019-03-22 Winter term update
/////////////////////////////////////////////////////////////////
#include "AmaApp.h"
#include "AmaApp.h" // intentional
int main()
{
ama::AmaApp theApp("inventory.txt");
theApp.run();
return 0;
}