Back to Top page.

EGSignal.h

Go to the documentation of this file.
00001 #ifndef INCLUDE__EGSIGNAL_H__FILE
00002 #define INCLUDE__EGSIGNAL_H__FILE
00003 
00004 bool Interruption = false;
00005 
00006 void SigIntHandler(int sig) 
00007 {
00008   Interruption = true;
00009 }
00010 
00011 #endif