source: rtems-tools/tester/covoar/CoverageWriterRTEMS.h @ f9a4b2c

5
Last change on this file since f9a4b2c was 100f517, checked in by Chris Johns <chrisj@…>, on 05/09/14 at 11:50:37

covoar: Merger the covoar source from rtems-testing.git.

Use waf to build covoar.

  • Property mode set to 100644
File size: 995 bytes
Line 
1/*! @file CoverageWriterRTEMS.h
2 *  @brief CoverageWriterRTEMS Specification
3 *
4 *  This file contains the specification of the CoverageWriterRTEMS class.
5 */
6
7#ifndef __COVERAGE_WRITER_RTEMS_H__
8#define __COVERAGE_WRITER_RTEMS_H__
9
10#include "CoverageMapBase.h"
11#include "CoverageWriterBase.h"
12
13namespace Coverage {
14
15  /*! @class CoverageWriterRTEMS
16   *
17   *  This class writes a coverage map in RTEMS format.  The format is
18   *  documented in CoverageReaderRTEMS.
19   */
20  class CoverageWriterRTEMS : public CoverageWriterBase {
21
22  public:
23
24    /*!
25     *  This method constructs a CoverageWriterRTEMS instance.
26     */
27    CoverageWriterRTEMS();
28
29    /*!
30     *  This method destructs a CoverageWriterRTEMS instance.
31     */
32    virtual ~CoverageWriterRTEMS();
33
34    /* Inherit documentation from base class. */
35    void writeFile(
36      const char* const file,
37      CoverageMapBase*  coverage,
38      uint32_t          lowAddress,
39      uint32_t          highAddress
40    );
41  };
42
43}
44#endif
Note: See TracBrowser for help on using the repository browser.