summaryrefslogtreecommitdiff
path: root/src/intersim/singlenet.hpp
blob: f664c1cc6fb16a4f8f27bfcdc04731eeccd83634 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
#ifndef _SINGLENET_HPP_
#define _SINGLENET_HPP_

#include "network.hpp"

class SingleNet : public Network {

   void _ComputeSize( const Configuration &config );
   void _BuildNet( const Configuration &config );

public:
   SingleNet( const Configuration &config );

   void Display( ) const;
};

#endif