summaryrefslogtreecommitdiff
path: root/covoar/CoverageMap.cc
blob: 816be111bee2276eafc4fbe6aa2429cd9dc90ba8 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
/*! @file CoverageMap.cc
 *  @brief CoverageMap Implementation
 *
 *  This file contains the implementation of the functions supporting
 *  a CoverageMap.  Currently, it adds no functionality to CoverageMapBase.
 */

#include "CoverageMap.h"

namespace Coverage {

  CoverageMap::CoverageMap(
    uint32_t low,
    uint32_t high
  ) : CoverageMapBase(low, high)
  {
  }

  CoverageMap::~CoverageMap()
  {
  }

}