summaryrefslogtreecommitdiffstats
path: root/tester/covoar/CoverageMap.cc
blob: 3e0b9cec7a62a059190a65e0f56040e78cb2dbb0 (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
/*! @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(
    const std::string& exefileName,
    uint32_t           low,
    uint32_t           high
  ) : CoverageMapBase( exefileName, low, high )
  {
  }

  CoverageMap::~CoverageMap()
  {
  }

}