-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathmain.cpp
More file actions
23 lines (17 loc) · 736 Bytes
/
main.cpp
File metadata and controls
23 lines (17 loc) · 736 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
/*********************************************************************
** Program Filename: Assignment 3
** Author: Cole Seifert
** Date: 2/27/2023
** Description: This program is a airport manager. There are 3 classes (Manager, airport, flight). The manager class calls different functions depending on the user's choice.
** The manager has access to an array of airports, and each airport has an array of flights.
** The manager can add, remove, take off, list all the airport information, and print airport stats. 7
*********************************************************************/
#include <iostream>
#include "manager.h"
using namespace std;
int main()
{
Manager m;
m.run();
return 0;
}