blob: 6c44eb0490b7e53625782d95ecb4e225dd3146e4 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
|
#ifndef CUSTOMTOPOLOGY_H
#define CUSTOMTOPOLOGY_H
#include "mem/ruby/network/simple/Topology.hh"
class CustomTopology : public Topology
{
public:
CustomTopology(const string & name);
void init(const vector<string> & argv);
protected:
void construct();
};
#endif
|