File indexing completed on 2024-04-21 15:55:31

0001 /**************************************************************************
0002 *   Copyright (C) 2008 by Michel Ludwig (michel.ludwig@kdemail.net)       *
0003 ***************************************************************************/
0004 
0005 /**************************************************************************
0006 *                                                                         *
0007 *   This program is free software; you can redistribute it and/or modify  *
0008 *   it under the terms of the GNU General Public License as published by  *
0009 *   the Free Software Foundation; either version 2 of the License, or     *
0010 *   (at your option) any later version.                                   *
0011 *                                                                         *
0012 ***************************************************************************/
0013 
0014 #include "configurationmanager.h"
0015 
0016 #include "kileconfig.h"
0017 
0018 #include "kileinfo.h"
0019 
0020 namespace KileConfiguration {
0021 
0022 Manager::Manager(KileInfo *kileInfo, QObject *parent, const char *name)  : QObject(parent), m_kileInfo(kileInfo)
0023 {
0024     setObjectName(name);
0025 }
0026 
0027 Manager::~Manager() {
0028 
0029 }
0030 
0031 void Manager::emitConfigChanged()
0032 {
0033     emit configChanged();
0034 }
0035 }
0036 
0037