summaryrefslogtreecommitdiff
path: root/tester/covoar/TraceReaderBase.h
blob: cf1cd22d8a24a95015b8b7a85e70e035d0fe46f8 (plain)
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
42
43
44
45
46
47
48
49
50
51
52
53
54
55
/*! @file TraceReaderBase.h
 *  @brief TraceReaderBase Specification
 *
 *  This file contains the specification of the TraceReaderBase class.
 */

#ifndef __TRACE_READER_BASE_H__
#define __TRACE_READER_BASE_H__

#include "TraceList.h"

namespace Trace {

  /*! @class TraceReaderBase
   *
   *  This is the specification of the TraceReader base class.
   *  All TraceReader implementations inherit from this class.
   */
  class TraceReaderBase {

  public:

    /*!
     *  Trace list that is filled by processFile.
     */
    TraceList Trace;


    /*! 
     *  This method constructs a TraceReaderBase instance.
     */
    TraceReaderBase();

    /*! 
     *  This method destructs a TraceReaderBase instance.
     */
    virtual ~TraceReaderBase();

    /*!
     *  This method processes the coverage information from the input
     *  @a file and adds it to the specified @a executableInformation.
     *
     *  @param[in] file is the coverage file to process
     *  @param[in] executableInformation is the information for an
     *             associated executable
     *
     *  @return Returns TRUE if the method succeeded and FALSE if it failed.
     */
    virtual bool processFile(
      const char* const     file
    ) = 0;
  };

}
#endif