00001 #include "CommDetectorBase.h" 00002 00003 CommDetectorBase::CommDetectorBase() : m_bPaused(false), m_bStop(false) 00004 { 00005 } 00006 00007 void CommDetectorBase::stop() 00008 { 00009 m_bStop = true; 00010 } 00011 00012 void CommDetectorBase::pause() 00013 { 00014 m_bPaused = true; 00015 } 00016 00017 void CommDetectorBase::resume() 00018 { 00019 m_bPaused = false; 00020 } 00021 00022 00023 /* vim: set expandtab tabstop=4 shiftwidth=4: */