Dev Essential
Loading...
Searching...
No Matches
mapping_string.h
Go to the documentation of this file.
1
20
21#ifndef MAPPING_STRING_H_INCLUDED
22#define MAPPING_STRING_H_INCLUDED
23
25
26#include <string>
27
28namespace ddl {
29namespace mapping {
30
45public:
56 static MappingConfiguration fromXMLString(const std::string& xml_string);
57
66 static std::string toXMLString(const MappingConfiguration& config_to_write);
67};
68
69} // namespace mapping
70} // namespace ddl
71
72#endif // MAPPING_STRING_H_INCLUDED
Mapping Configuration model with validation and requirements management.
Definition mapping_configuration.h:34
Convenience class to load and validate a MappingConfiguration from a xml string. This implementatio...
Definition mapping_string.h:44
static MappingConfiguration fromXMLString(const std::string &xml_string)
Read a string containing a MappingConfiguration in a XML string.
static std::string toXMLString(const MappingConfiguration &config_to_write)
This will write the given valid MappingConfiguration into a string as xml.
definition of the mapping namespace
Definition ddl.h:50
definition of the ddl namespace
Definition codec.h:21