summaryrefslogtreecommitdiffstats
path: root/tester/covoar/CoverageMap.h
blob: c098072e1562965497d760bc98028be1c6e92522 (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
28
29
30
31
32
33
34
35
36
37
38
39
40
41
/*! @file CoverageMap.h
 *  @brief CoverageMap Specification
 *
 *  This file contains the specification of the CoverageMap class.
 */

#ifndef __COVERAGE_MAP_H__
#define __COVERAGE_MAP_H__

#include "CoverageMapBase.h"

namespace Coverage {

  /*! @class CoverageMap
   *
   *  This class implements a coverage map which supports a single
   *  range of addresses from low to high.
   */
  class CoverageMap : public CoverageMapBase {

  public:

    /*!
     *  This method constructs a CoverageMap instance.
     *
     *  @param[in] low specifies the lowest address of the coverage map.
     *  @param[in] high specifies the highest address of the coverage map.
     */
    CoverageMap(
      const std::string& exefileName,
      uint32_t           low,
      uint32_t           high
    );

    /* Inherit documentation from base class. */
    virtual ~CoverageMap();

  };

}
#endif