src/common/output-stream-object.cc
author Craig Dowell <craigdo@ee.washington.edu>
Mon, 08 Feb 2010 23:32:23 -0800
changeset 6046 46665d75667d
parent 6011 3fd7841b9c20
permissions -rw-r--r--
output stream object inherits from simple ref count

/* -*- Mode: C++; c-file-style: "gnu"; indent-tabs-mode:nil; -*- */
/*
 * Copyright (c) 2010 University of Washington
 *
 * This program is free software; you can redistribute it and/or modify
 * it under the terms of the GNU General Public License version 2 as
 * published by the Free Software Foundation;
 *
 * This program is distributed in the hope that it will be useful,
 * but WITHOUT ANY WARRANTY; without even the implied warranty of
 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
 * GNU General Public License for more details.
 *
 * You should have received a copy of the GNU General Public License
 * along with this program; if not, write to the Free Software
 * Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA  02111-1307  USA
 */

#include "ns3/log.h"
#include "output-stream-object.h"

NS_LOG_COMPONENT_DEFINE ("OutputStreamObject");

namespace ns3 {

OutputStreamObject::OutputStreamObject ()
  : m_ostream (0)
{
}

OutputStreamObject::~OutputStreamObject ()
{
  delete m_ostream;
  m_ostream = 0;
}

void
OutputStreamObject::SetStream (std::ostream *ostream)
{
  m_ostream = ostream;
}

std::ostream *
OutputStreamObject::GetStream (void)
{
  return m_ostream;
}

} //namespace ns3