// Project 2 for CS 1704 Spring 2004 // // Programmer: Deborah A Thompson // OS: Windows XP Professional // System: Pentium III 500, 256 MB Memory // Compiler: Visual C++ 6.0, Service Pack 4 // Last modified: Febraury 23, 2004 // // Purpose: // Provide the constants for all the classes and functions of this // program. #ifndef CONSTANTS_H #define CONSTANTS_H #include using namespace std; //default const default const string DEFAULT = "DEFAULT"; //struct called Address //includes Street, Apt, City, State, Zip, Entry struct Address { string Street, Apt, City, State, Zip; bool Entry; }; #endif