00001 /********************************************************************** 00002 SlottedWaitCondition - Simple wrapper around QWaitCondition with 00003 wake slots. 00004 00005 Copyright (C) 2010-2011 by David C. Lonie 00006 00007 This source code is released under the New BSD License, (the "License"). 00008 00009 Unless required by applicable law or agreed to in writing, software 00010 distributed under the License is distributed on an "AS IS" BASIS, 00011 WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. 00012 See the License for the specific language governing permissions and 00013 limitations under the License. 00014 ***********************************************************************/ 00015 00016 #include <globalsearch/slottedwaitcondition.h> 00017 00018 namespace GlobalSearch { 00019 00020 SlottedWaitCondition::SlottedWaitCondition(QObject *parent) 00021 : QObject(parent), 00022 QWaitCondition(), 00023 m_mutex() 00024 { 00025 } 00026 00027 SlottedWaitCondition::~SlottedWaitCondition() 00028 { 00029 } 00030 }