// include file for Morse Code.cpp // Dietel Exercise 5.47 (Morse Cod) see pg. 360 // A program that reads Englih language phrase and encode it into Morse Cod. // A program that reads Morse Cod and converts it into English. // Start date 04/07/2006 10:00 #ifndef MORSE_CODE_H #define MORSE_CODE_H #include using namespace std; #include #include //#include // Macro Substitutions #define MAX_CHAR_INPUT 81 #define MAX_CHAR_OUTPUT 501 #define ALPHABET_NUMBER 37 #define M_C_NUMBER 7 // Macro Substitution: of program end announcement #define END_PROGRAM_ANNOUNCEMENT_MACRO cout<<"\n\n END PROGRAM. \n PROGRAM ENDS.\n"<