我正在努力将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
成员或实施中的任何其他属性?
谢谢!
答案 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];
}