RTP Trace System
1.0
|
00001 // ########################################################################## 00002 // #### #### 00003 // #### RTP Audio Server Project #### 00004 // #### ============================ #### 00005 // #### #### 00006 // #### Break Detector #### 00007 // #### #### 00008 // #### Version 1.00 -- February 16, 2001 #### 00009 // #### #### 00010 // #### Copyright (C) 1999 Thomas Dreibholz #### 00011 // #### 2000 Universität Bonn, Abt. IV #### 00012 // #### 2001 EMail: dreibh@iem.uni-due.de #### 00013 // #### WWW: https://www.uni-due.de/~be0001 #### 00014 // #### #### 00015 // ########################################################################## 00016 00017 00018 #ifndef BREAKDETECTOR_H 00019 #define BREAKDETECTOR_H 00020 00021 00022 #include "system.h" 00023 00024 00025 namespace Coral { 00026 00027 00031 void installBreakDetector(); 00032 00036 void uninstallBreakDetector(); 00037 00041 bool breakDetected(); 00042 00043 00044 } 00045 00046 00047 #endif