RINASim  October 2016
Documentation of framework for OMNeT++
nhLMetric.h
Go to the documentation of this file.
1 #pragma once
2 
3 #include <string>
4 #include <set>
5 
6 namespace common_GraphCL {
7 
8 using namespace std;
9 
10 template <class T>
11 struct nhLMetric {
12  T metric;
13  set<string> nh;
15  nhLMetric(const T & m, const set<string> & n) : metric(m), nh(n) {}
16 };
17 
18 } /* namespace common_GraphCL */
nhLMetric(const T &m, const set< string > &n)
Definition: nhLMetric.h:15