ddt 1.2.1
Loading...
Searching...
No Matches
informationMaps.hpp
Go to the documentation of this file.
1
21#ifndef INFORMATIONMAPS_HPP
22#define INFORMATIONMAPS_HPP
23
24#include <sys/stat.h>
25
26#include <algorithm>
27#include <cctype>
28
29#include "ddt/ddtLogger.hpp"
32
33namespace ddt {
34
39 public:
44
48 virtual ~InformationMaps();
49
54 void set_logger(ddt::DdtLogger* const in_logger);
55
60 std::list<std::string> get_InformationMaps();
61
68 boost::property_tree::ptree* get_InformationMap(
69 const std::string identification);
70
75 void LoadInformationMaps(const std::string info_map_source);
76
77 protected:
82
83 private:
87 void Initialize();
88
93};
94
95} // namespace ddt
96
97#endif /* INFORMATIONMAPS_HPP */
98
Definition ddtLogger.hpp:51
Definition informationMapsAccess.hpp:52
Definition informationMaps.hpp:38
std::list< std::string > get_InformationMaps()
Definition informationMaps.cpp:66
void LoadInformationMaps(const std::string info_map_source)
Definition informationMaps.cpp:62
ddt::DdtLogger * logger
Definition informationMaps.hpp:81
InformationMaps()
Definition informationMaps.cpp:29
boost::property_tree::ptree * get_InformationMap(const std::string identification)
Definition informationMaps.cpp:77
void set_logger(ddt::DdtLogger *const in_logger)
Definition informationMaps.cpp:39
virtual ~InformationMaps()
Definition informationMaps.cpp:31
Class to wrap the usage of log4cplus as logging utility. This file provides a wrapper class for the u...
Information maps access class, offers access to information maps that are stored in files....
Information maps access class, offers access to information maps. This file is part of the DDT Image ...
Definition ddtClient.hpp:39