1 /**************************************************************************
2 *   Copyright (C) 2008 by Michel Ludwig (michel.ludwig@kdemail.net)       *
3 ***************************************************************************/
4 
5 /**************************************************************************
6 *                                                                         *
7 *   This program is free software; you can redistribute it and/or modify  *
8 *   it under the terms of the GNU General Public License as published by  *
9 *   the Free Software Foundation; either version 2 of the License, or     *
10 *   (at your option) any later version.                                   *
11 *                                                                         *
12 ***************************************************************************/
13 
14 #include "configurationmanager.h"
15 
16 #include "kileconfig.h"
17 
18 #include "kileinfo.h"
19 
20 namespace KileConfiguration {
21 
Manager(KileInfo * kileInfo,QObject * parent,const char * name)22 Manager::Manager(KileInfo *kileInfo, QObject *parent, const char *name)  : QObject(parent), m_kileInfo(kileInfo)
23 {
24     setObjectName(name);
25 }
26 
~Manager()27 Manager::~Manager() {
28 
29 }
30 
emitConfigChanged()31 void Manager::emitConfigChanged()
32 {
33     emit configChanged();
34 }
35 }
36 
37 
38