/* File: super.cp 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: Keyword static strings are initialized (once) here. Otherwise, super contains abstract classes not instantiated separately. Modification history: 8/1/98: RPF. Started. 8/8/98: RPF. added ring_confirm and null_string */ #include "includes.h" string* Keywords::pickup = new string("pickup"); string* Keywords::hangup = new string("hangup"); string* Keywords::dial = new string("dial"); string* Keywords::ring = new string("ring"); string* Keywords::ring_confirm = new string("ring_confirm"); string* Keywords::busy = new string("busy"); string* Keywords::speech = new string("speech"); string* Keywords::null_string = new string("");