mirror of
https://git.rtems.org/rtems-tools/
synced 2025-06-11 20:28:41 +08:00
21 lines
351 B
C++
21 lines
351 B
C++
/*! @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()
|
|
{
|
|
}
|
|
|
|
}
|