在模板类

时间:2015-04-22 14:39:17

标签: c++ templates boost boost-propertytree

在这个主题Boost property_tree: multiple values per key上,提出了一种方法来读取提升树的多个键。我将在

下面粘贴修改后的版本
template<int dim>
struct my_vector
{
  std::vector<double> a_vector;
};

翻译将是:

template<int dim>
struct my_vector_translator
{
  typedef std::string    internal_type;
  typedef my_vector external_type;
  // Get a my_vector from a string
  boost::optional<external_type> get_value(const internal_type& str)
  {
    if (!str.empty())
    {
      std::vector val;
      val.resize(dim)
      std::stringstream s(str);
      double temp;
      for (int i=0, i < dim; ++i){
          s >> temp;
          val.a_vector[i] = temp;
      return boost::optional<external_type>(val);
    }
    else
      return boost::optional<external_type>(boost::none);
  }

};

现在,我该如何正确注册翻译?

namespace boost { namespace property_tree 
{
  template<typename Ch, typename Traits, typename Alloc> 
  struct translator_between<std::basic_string< Ch, Traits, Alloc >, my_vector<it want something here of course, where do i get it from ?> >
  {
    typedef my_vector_translator<it want something here of course, where do i get it from ?> type;
  };
} }

包含上一代码后,您可以将property_tree用作:

  pt.get<my_vector ??and here where do i put the size ?>("box.x");

不知怎的,我觉得班级my_vector没用。我不能直接使用std :: vector吗?

我想要像:

pt.get<std::vector<double>, 3>("mesh.a_line_where_i_know_i_have_3_doubles_to_read");

谢谢。

1 个答案:

答案 0 :(得分:1)

在我看来,size已经是my_vector类模板的模板参数。

所以

pt.get<my_vector<3> >("box.x");

应该是好的

注册:

部分特化可以引入额外的模板参数,因此只需将size_t N添加到列表中:

namespace boost { namespace property_tree {
    template<typename Ch, typename Traits, typename Alloc, size_t N> 
        struct translator_between<std::basic_string<Ch, Traits, Alloc>, my_vector<N> >
        {
            typedef my_vector_translator<N> type;
        };
} }