source: rtems-tools/tester/covoar/CoverageMap.cc @ cb018bc

5
Last change on this file since cb018bc was cb018bc, checked in by Hermann Felbinger <hermann19829@…>, on 08/26/17 at 08:15:53

covoar: Add information to improve diagnostics.

  • Property mode set to 100644
File size: 481 bytes
Line 
1/*! @file CoverageMap.cc
2 *  @brief CoverageMap Implementation
3 *
4 *  This file contains the implementation of the functions supporting
5 *  a CoverageMap.  Currently, it adds no functionality to CoverageMapBase.
6 */
7
8#include "CoverageMap.h"
9
10namespace Coverage {
11
12  CoverageMap::CoverageMap(
13    const std::string& exefileName,
14    uint32_t           low,
15    uint32_t           high
16  ) : CoverageMapBase(exefileName, low, high)
17  {
18  }
19
20  CoverageMap::~CoverageMap()
21  {
22  }
23
24}
Note: See TracBrowser for help on using the repository browser.