Danish Eniro search fixed.
[jenirok] / src / common / sourcecoreconfig.cpp
1 /*
2  * This file is part of Jenirok.
3  *
4  * Jenirok is free software: you can redistribute it and/or modify
5  * it under the terms of the GNU General Public License as published by
6  * the Free Software Foundation, either version 3 of the License, or
7  * (at your option) any later version.
8  *
9  * Jenirok is distributed in the hope that it will be useful,
10  * but WITHOUT ANY WARRANTY; without even the implied warranty of
11  * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
12  * GNU General Public License for more details.
13  *
14  * You should have received a copy of the GNU General Public License
15  * along with Jenirok.  If not, see <http://www.gnu.org/licenses/>.
16  *
17  */
18
19 #include <QtCore/QDebug>
20 #include "sourcecoreconfig.h"
21 #include "enirocoreconfig.h"
22 #include "emptycoreconfig.h"
23
24 SourceCoreConfig::SourceCoreConfig()
25 {
26 }
27
28 SourceCoreConfig::~SourceCoreConfig()
29 {
30 }
31
32 SourceCoreConfig* SourceCoreConfig::getCoreConfig(Source::SourceId id)
33 {
34     switch(id)
35     {
36     case Source::ENIRO:
37         return new EniroCoreConfig();
38         break;
39     case Source::MOBIL1881:
40     case Source::DASTELEFONBUCH:
41         return new EmptyCoreConfig(); // No configuration
42         break;
43     default:
44         qDebug() << "Unknown source id: " << id;
45     }
46
47     return 0;
48 }