/* File: globals.h Author: R. P. Futrelle Date: 8/8/98 Notice: Copyright 1998 by R. P. Futrelle and the College of Computer Science, Northeastern University Class: COM1204, Object-Oriented Design, Summer 1998. Proj: PS2.µ Metrowerks Code Warrior Mac. Done in IDE version 2.0.1. Purpose: Contains possibly the only global we will use. Modification history: 8/1/98: RPF. Started. 8/8/98: RPF. Added connectors count. */ // Must be extern because included in all source files // and can only be defined once (done in main.cp). extern System *sys; const int MAX_PHONES = 100; const int MAX_SWITCHES = 10; const int MAX_CONNECTORS = 200;