summaryrefslogtreecommitdiffstats
path: root/covoar/CoverageMap.cc
blob: cfe20bbad6813264cbe194a16f20301e38047a61 (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
25
26
27
/*
 *  $Id$
 */

/*! @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()
  {
  }

}