File indexing completed on 2024-10-06 04:31:44
0001 /* This file is part of the KDE project 0002 0003 Copyright (C) 2008 - 2009 Lukas Appelhans <l.appelhans@gmx.de> 0004 0005 This program is free software; you can redistribute it and/or 0006 modify it under the terms of the GNU General Public 0007 License as published by the Free Software Foundation; either 0008 version 2 of the License, or (at your option) any later version. 0009 */ 0010 #include "handler.h" 0011 0012 #include "scheduler.h" 0013 0014 Handler::Handler(Scheduler *scheduler, QObject *parent) 0015 : QObject(parent) 0016 , m_scheduler(scheduler) 0017 { 0018 } 0019 0020 Handler::~Handler() 0021 { 0022 } 0023 0024 #include "moc_handler.cpp"