blob: 0c2c84ef8071dba2fcb47d76ce0c119201797f5b [file] [log] [blame]
#ifndef HIERARCHICALSWITCHTOPOLOGY_H
#define HIERARCHICALSWITCHTOPOLOGY_H
#include "mem/ruby/network/simple/Topology.hh"
class HierarchicalSwitchTopology : public Topology
{
public:
HierarchicalSwitchTopology(const string & name);
void init(const vector<string> & argv);
protected:
void construct();
};
#endif