Skip to content
Snippets Groups Projects
TestChannel.cpp 569 B
Newer Older
//------------------------------------------------------------------------------
// Includes
//------------------------------------------------------------------------------
#include "MantidKernel/TestChannel.h"

namespace Mantid
{

    TestChannel::TestChannel()
    {
    }

    TestChannel::~TestChannel()
    {
    }

    void TestChannel::log(const Poco::Message& msg)
    {
      _msgList.push_back(msg);
    }

    TestChannel::MsgList& TestChannel::list()
    {
      return _msgList;
    }

    void TestChannel::clear()
    {
      _msgList.clear();
    }

}