Go to the documentation of this file.00001
00002
00003
00004
00005
00006
00007
00008
00009
00010
00011
00012
00013
00014
00015
00016
00017
00018
00019
00020
00021
00022
00023
00024
00025
00026
00027
00028
00029
00030 #ifndef YAML_UTIL_YAML_UTIL_H_
00031 #define YAML_UTIL_YAML_UTIL_H_
00032
00033 #include <stdint.h>
00034 #include <memory>
00035
00036 #include <yaml-cpp/yaml.h>
00037
00038 #include <swri_yaml_util/version.h>
00039
00040 #ifndef YAMLCPP_OLD_API
00041 namespace YAML
00042 {
00043 void operator >> (const YAML::Node& node, float& value);
00044 void operator >> (const YAML::Node& node, double& value);
00045 void operator >> (const YAML::Node& node, bool& value);
00046 void operator >> (const YAML::Node& node, int16_t& value);
00047 void operator >> (const YAML::Node& node, uint16_t& value);
00048 void operator >> (const YAML::Node& node, int32_t& value);
00049 void operator >> (const YAML::Node& node, uint32_t& value);
00050 void operator >> (const YAML::Node& node, int64_t& value);
00051 void operator >> (const YAML::Node& node, uint64_t& value);
00052 void operator >> (const YAML::Node& node, std::string& value);
00053 }
00054 #endif // YAMLCPP_OLD_API
00055
00056 namespace swri_yaml_util
00057 {
00058 bool LoadFile(const std::string& path, YAML::Node& yaml);
00059 bool LoadString(const std::string& input, YAML::Node& yaml);
00060 bool LoadMap(const std::map<std::string, std::string>& dict, YAML::Node& yaml);
00061 bool FindValue(const YAML::Node& node, const std::string& name);
00062
00063 std::auto_ptr<YAML::Node> Clone(const YAML::Node& node);
00064
00065 std::string ToString(double value, int32_t precision);
00066 }
00067
00068 #endif // YAML_UTIL_YAML_UTIL_H_