home *** CD-ROM | disk | FTP | other *** search
/ Fresh Fish 7 / FreshFishVol7.bin / bbs / gnu / aplusplus-1.01-src.lha / GNU / src / amiga / APlusPlus-1.01 / TESTPRGS / exec / SigResp_test.cxx < prev    next >
C/C++ Source or Header  |  1994-04-23  |  1KB  |  61 lines

  1. /******************************************************************************
  2.  *
  3.  *    $Source: apphome:APlusPlus/RCS/TESTPRGS/exec/SigResp_test.cxx,v $
  4.  *
  5.  *    Demo for the A++ Library
  6.  *    Copyright (C) 1994 by Armin Vogt, EMail: armin@uni-paderborn.de
  7.  *
  8.  *       $Revision: 1.3 $
  9.  *       $Date: 1994/04/23 21:26:58 $
  10.  *       $Author: Armin_Vogt $
  11.  *
  12.  ******************************************************************************/
  13.  
  14.  
  15. extern "C" {
  16. #include <dos/dos.h>
  17. }
  18. #include <iostream.h>
  19. #include <APlusPlus/exec/SignalResponder.h>
  20.  
  21.  
  22. volatile static char rcs_id[] = "$Id: SigResp_test.cxx,v 1.3 1994/04/23 21:26:58 Armin_Vogt Exp Armin_Vogt $";
  23.  
  24.  
  25. class MySRSP:  public SignalResponder
  26. {
  27.    private:
  28.       BOOL running;
  29.    public:
  30.       MySRSP() : SignalResponder(SIGBREAKB_CTRL_C,0)
  31.       { running = TRUE; }
  32.       ~MySRSP() {}
  33.  
  34.       // overload the virtual 'signal received' action callback method.
  35.       void actionCallback()
  36.       {
  37.          cout << "**Break\n";
  38.          running = FALSE;
  39.       }
  40.  
  41.       BOOL hasNotOccured() { return running==TRUE; }
  42. };
  43.  
  44.  
  45. int main(int argc,char *argv[])
  46. {
  47.    MySRSP ctrlCBreak;
  48.       
  49.    cout << "SignalResponder - Test: please press CTRL-c to end this programm.\n";
  50.  
  51.    cout << "waiting..\n";
  52.  
  53.    while ( ctrlCBreak.hasNotOccured() )
  54.    {
  55.       SignalResponder::WaitSignal();
  56.    }
  57.  
  58.    cout << "Thank You. Goodbye.\n";
  59.    return 0;
  60. }
  61.