Public Member Functions | Public Attributes

CBRArea Class Reference

Auxiliary class for CoordBasedRouting: Holds the min and max border values for each dimension and the area's NodeID prefix. More...

#include <CoordBasedRouting.h>

List of all members.

Public Member Functions

 CBRArea (uint8_t dim)
 CBRArea Constructor, reserves space for min & max vectors.
 ~CBRArea ()

Public Attributes

std::vector< double > min
std::vector< double > max
std::string prefix

Detailed Description

Auxiliary class for CoordBasedRouting: Holds the min and max border values for each dimension and the area's NodeID prefix.

Definition at line 39 of file CoordBasedRouting.h.


Constructor & Destructor Documentation

CBRArea::CBRArea ( uint8_t  dim  ) 

CBRArea Constructor, reserves space for min & max vectors.

Definition at line 265 of file CoordBasedRouting.cc.

{
    min.reserve(dim);
    max.reserve(dim);
}

CBRArea::~CBRArea (  )  [inline]

Definition at line 43 of file CoordBasedRouting.h.

{};


Member Data Documentation

std::vector<double> CBRArea::max
std::vector<double> CBRArea::min
std::string CBRArea::prefix

The documentation for this class was generated from the following files: