summaryrefslogtreecommitdiff
path: root/src/mem/ruby/network/simple/HierarchicalSwitchTopology.hh
blob: 1b5627206af0c8ae025687579ba4d4a8e1d87099 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17

#ifndef HIERARCHICALSWITCHTOPOLOGY_H
#define HIERARCHICALSWITCHTOPOLOGY_H

#include "mem/ruby/network/simple/Topology.hh"

class HierarchicalSwitchTopology : public Topology
{
public:
  HierarchicalSwitchTopology(const string & name);
  void init();

protected:
  void construct();
};

#endif