home *** CD-ROM | disk | FTP | other *** search
/ Using Visual C++ 4 (Special Edition) / Using_Visual_C_4_Special_Edition_QUE_1996.iso / ch13 / nested.cpp < prev    next >
C/C++ Source or Header  |  1995-09-18  |  1KB  |  52 lines

  1. // Get needed include files
  2. #include <stdlib.h>
  3. #include <iostream.h>
  4. #include <eh.h>
  5.  
  6. // Constants
  7. const int MIN_FLAG_VALUE = 0;
  8. const int MAX_FLAG_VALUE = 10;
  9. const int FLAG_OUT_OF_BOUNDS = 0xFF;
  10.  
  11. // Processing
  12. void DoSomethingElse()
  13. {
  14.     cout << "Inside DoSomethingElse.\n";
  15. }
  16.  
  17. void DoSomethingUseful(int Flag)
  18. {
  19.     cout << "Inside DoSomethingUseful.\n";
  20.  
  21.     // Is our flag too big or too small?
  22.     if (Flag < MIN_FLAG_VALUE || Flag > MAX_FLAG_VALUE)
  23.         throw FLAG_OUT_OF_BOUNDS;
  24.  
  25.     // Do some processing
  26.     try {
  27.         if (Flag == 0) {
  28.             cout << "The flag was set to zero.\n";
  29.             DoSomethingElse();
  30.         }
  31.         else
  32.             throw "Flag is non-zero.";
  33.     }
  34.     catch (char *ErrorString) {
  35.         cout << ErrorString << "\n";
  36.     }
  37. }
  38.  
  39. void main(int argc, char *argv[ ])
  40. {
  41.     // If no command-line arguments, set the flag to zero
  42.     int UseFlag = (argc == 1 ? 0 : atoi(argv[1]));
  43.  
  44.     // Do some processing
  45.     try {
  46.         DoSomethingUseful(UseFlag);
  47.     }
  48.     catch (int ErrorCode) {
  49.         cout << "Caught an exception (" << ErrorCode << ")\n";
  50.     }
  51. }
  52.