Add a builder attribute to the topology and construct method

This commit is contained in:
lasnier 2012-11-20 16:53:28 +01:00
commit 631d693bef
8 changed files with 86 additions and 18 deletions

View file

@ -40,9 +40,9 @@ class Topology : public AbstractTopology
{
public :
Topology(unsigned nbIsland);
std::vector<unsigned> getIdNeighbours(unsigned idIsland) const;
Topology() = default;
std::vector<unsigned> getIdNeighbors(unsigned idIsland) const;
void construct(unsigned nbIsland);
private :
TopologyType _builder;