Page Menu
Home
c4science
Search
Configure Global Search
Log In
Files
F97558970
ConfigFile.h
No One
Temporary
Actions
Download File
Edit File
Delete File
View Transforms
Subscribe
Mute Notifications
Award Token
Subscribers
None
File Metadata
Details
File Info
Storage
Attached
Created
Sun, Jan 5, 06:47
Size
898 B
Mime Type
text/x-c
Expires
Tue, Jan 7, 06:47 (1 d, 23 h)
Engine
blob
Format
Raw Data
Handle
23426233
Attached To
rSTICAZZI yearII_reports
ConfigFile.h
View Options
// Classe facilitant la lecture de fichiers de configuration.
// Contributeurs : K. Steiner, J. Dominski, N. Ohana
// Utilisation : Envoyer au constructeur le nom d'un fichier contenant
// les parametres sous la forme [param=valeur] sur chaque ligne, puis
// appeler get<type>("param") pour acceder a un parametre.
#ifndef CONFIGFILE_H
#define CONFIGFILE_H
#include <map>
#include <iostream>
#include <fstream>
#include <stdio.h>
#include <stdlib.h>
#include <sstream>
class ConfigFile{
public:
ConfigFile(const std::string& filename);
~ConfigFile();
template<typename T> T get(const std::string& key) const;
void process(const std::string& lineread);
std::string toString() const;
void printOut(const std::string& path) const;
private:
std::string trim(const std::string& str);
std::map<std::string, std::string> configMap;
};
#endif
Event Timeline
Log In to Comment