7 Apr
2009
7 Apr
'09
10:59 p.m.
Hello, I'm creating a program that will require a vector, of dynamic size, of subgraphs. so let's suppose I have something like this: typedef subgraph< adjacency_list > Graph; Graph G; what I want is to create a: vector< Graph& > subG; but the usage of & here is illegal. Do you guys have any suggestion on how to do it? regards,