SpikeStream Library  0.2
ConfigEditor.h
Go to the documentation of this file.
00001 #ifndef CONFIGEDITOR_H
00002 #define CONFIGEDITOR_H
00003 
00004 //Qt includes
00005 #include <QFile>
00006 #include <QHash>
00007 #include <QString>
00008 
00009 namespace spikestream {
00010 
00013         class ConfigEditor {
00014                 public:
00015                         ConfigEditor();
00016                         ~ConfigEditor();
00017 
00018                         void setConfigParameters(QHash<QString, QString> newParamMap);
00019 
00020                 private:
00021                         //========================  VARIABLES  ========================
00022                         QString rootDirectory;
00023 
00024                         //=========================  METHODS  =========================
00025                         void setParameter(QHash<QString, QString>& paramMap, QString& configFileLine);
00026         };
00027 
00028 }
00029 
00030 #endif//CONFIGEDITOR_H
 All Classes Files Functions Variables Typedefs Defines