summaryrefslogtreecommitdiff
path: root/tester/covoar/TraceWriterBase.cc
blob: 2fa16dcde40cfc0967120b3eedd5f95724a766f4 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
/*! @file TraceWriterBase.cc
 *  @brief TraceWriterBase Implementation
 *
 *  This file contains the implementation of the TraceWriter base class.
 *  All TraceWriter implementations inherit from this.
 */

#include "TraceWriterBase.h"

namespace Trace {

  TraceWriterBase::TraceWriterBase()
  {
  }

  TraceWriterBase::~TraceWriterBase()
  {
  }

}