Experiments - 1.2.3
Utilities
Configuration
GA
NNFW
WorldSim
Total 99%
Experiments
Main Page
Modules
Classes
Files
File List
experiments
evorobot
src
abstracttest.cpp
1
/********************************************************************************
2
* FARSA Experiments Library *
3
* Copyright (C) 2007-2012 *
4
* Tomassino Ferrauto <tomassino.ferrauto@istc.cnr.it> *
5
* Stefano Nolfi <stefano.nolfi@istc.cnr.it> *
6
* Onofrio Gigliotta <onofrio.gigliotta@istc.cnr.it> *
7
* Gianluca Massera <emmegian@yahoo.it> *
8
* *
9
* This program is free software; you can redistribute it and/or modify *
10
* it under the terms of the GNU General Public License as published by *
11
* the Free Software Foundation; either version 2 of the License, or *
12
* (at your option) any later version. *
13
* *
14
* This program is distributed in the hope that it will be useful, *
15
* but WITHOUT ANY WARRANTY; without even the implied warranty of *
16
* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the *
17
* GNU General Public License for more details. *
18
* *
19
* You should have received a copy of the GNU General Public License *
20
* along with this program; if not, write to the Free Software *
21
* Foundation, Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301 USA *
22
********************************************************************************/
23
24
#include "abstracttest.h"
25
26
namespace
farsa {
27
28
void
AvailableTestList::addTest
(QString name,
AbstractTest
*test)
29
{
30
m_map[name] = test;
31
}
32
33
QStringList
AvailableTestList::getList
()
34
{
35
return
m_map.keys();
36
}
37
38
AbstractTest
*
AvailableTestList::getTest
(QString name)
39
{
40
QMap<QString, AbstractTest*>::iterator it = m_map.find(name);
41
42
if
(it != m_map.end()) {
43
return
it.value();
44
}
else
{
45
return
NULL;
46
}
47
}
48
49
QMap<QString, AbstractTest*> AvailableTestList::m_map;
50
51
}
//end namespace farsa