summaryrefslogblamecommitdiffstats
path: root/tester/covoar/CoverageMap.cc
blob: 816be111bee2276eafc4fbe6aa2429cd9dc90ba8 (plain) (tree)






















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

}