mathieu@150: /* -*- Mode:C++; c-file-style:"gnu"; indent-tabs-mode:nil; -*- */ mathieu@9: /* mathieu@9: * Copyright (c) 2005 INRIA mathieu@9: * mathieu@9: * This program is free software; you can redistribute it and/or modify mathieu@9: * it under the terms of the GNU General Public License version 2 as mathieu@9: * published by the Free Software Foundation; mathieu@9: * mathieu@9: * This program is distributed in the hope that it will be useful, mathieu@9: * but WITHOUT ANY WARRANTY; without even the implied warranty of mathieu@9: * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the mathieu@9: * GNU General Public License for more details. mathieu@9: * mathieu@9: * You should have received a copy of the GNU General Public License mathieu@9: * along with this program; if not, write to the Free Software mathieu@9: * Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA mathieu@9: * mathieu@9: * Author: Mathieu Lacage mathieu@9: */ mathieu@9: mathieu@34: #include "system-wall-clock-ms.h" mathieu@9: mathieu@16: namespace ns3 { mathieu@9: mathieu@34: class SystemWallClockMsPrivate { mathieu@9: public: gjc@645: void Start (void); gjc@645: unsigned long long End (void); mathieu@9: private: mathieu@9: }; mathieu@9: mathieu@9: void mathieu@122: SystemWallClockMsPrivate::Start (void) mathieu@9: { mathieu@9: } mathieu@9: mathieu@9: unsigned long long mathieu@122: SystemWallClockMsPrivate::End (void) mathieu@9: { mathieu@150: return 0; mathieu@9: } mathieu@9: mathieu@34: SystemWallClockMs::SystemWallClockMs () mathieu@150: : m_priv (new SystemWallClockMsPrivate ()) mathieu@9: {} mathieu@9: mathieu@34: SystemWallClockMs::~SystemWallClockMs () mathieu@9: { mathieu@150: delete m_priv; mathieu@150: m_priv = 0; mathieu@9: } mathieu@9: mathieu@9: void mathieu@122: SystemWallClockMs::Start (void) mathieu@9: { mathieu@150: m_priv->Start (); mathieu@9: } mathieu@9: unsigned long long mathieu@122: SystemWallClockMs::End (void) mathieu@9: { mathieu@150: return m_priv->End (); mathieu@9: } mathieu@9: mathieu@16: }; // namespace ns3