在boost :: graph中访问std :: shared_ptr的成员函数?

时间:2015-11-16 10:43:37

标签: c++ shared-ptr boost-graph boost-property-map

我正在努力将boost::graph算法的使用转换为一组新的实现类。我想知道:如果boost::graph仅存储std::shared_ptr引用,是否可以访问对象的属性?如下所示:

class Vert { 
public:
    Vert();
    Vert(std::string n);
    std::string getName() const;
    void setName( std::string const& n );
private:
    std::string name; 

};
typedef std::shared_ptr<Vert> Vert_ptr;

using namespace boost;
typedef boost::adjacency_list<vecS, vecS, directedS, Vert_ptr> Graph;
Graph g;
Vert_ptr a( new Vert("a"));
add_vertex( a, g );
std::ofstream dot("test.dot");
write_graphviz( dot, g, make_label_writer(boost::get(&Vert::getName,g))); //ERROR!

是否可以访问图表标签编写者std::shared_ptr中使用的write_graphviz成员或实施中的任何其他属性?

谢谢!

1 个答案:

答案 0 :(得分:3)

是的,只需使用转换属性映射

<强> Live On Coliru

#include <boost/graph/adjacency_list.hpp>
#include <boost/graph/graphviz.hpp>
#include <boost/property_map/transform_value_property_map.hpp>
#include <fstream>
#include <memory>

using namespace boost;

class Vert { 
public:
    Vert(std::string n="") : name(n) { }
    std::string getName() const { return name; }
    void setName( std::string const& n ) { name = n; }
private:
    std::string name; 
};

typedef std::shared_ptr<Vert> Vert_ptr;

struct Name { std::string operator()(Vert_ptr const& sp) const { return sp->getName(); } };

int main() {
    typedef boost::adjacency_list<vecS, vecS, directedS, Vert_ptr> Graph;
    Graph g;
    Vert_ptr a( new Vert("a"));
    add_vertex( a, g );
    std::ofstream dot("test.dot");
    auto name = boost::make_transform_value_property_map(Name{}, get(vertex_bundle,g));
    write_graphviz( dot, g, make_label_writer(name));
}

结果:

digraph G {
0[label=a];
}