|
|
// ########################################################################## // #### #### // #### RTP Audio Server Project #### // #### ============================ #### // #### #### // #### Break Detector #### // #### #### // #### Version 1.00 -- September 17, 2000 #### // #### #### // #### Copyright (C) 1999 Thomas Dreibholz #### // #### 2000 Universität Bonn, Abt. IV #### // #### EMail: Dreibholz@bigfoot.com #### // #### WWW: http://www.bigfoot.com/~dreibholz #### // #### #### // ########################################################################## #ifndef BREAKDETECTOR_H #define BREAKDETECTOR_H #include "system.h" namespace Coral { /** * Install break handler. */ void installBreakDetector(); /** * Uninstall break handler. */ void uninstallBreakDetector(); /** * Check, if break has been detected. */ bool breakDetected(); } #endif
Generated by: viper@odin on Mon Oct 16 11:49:26 2000, using kdoc 2.0a36. |