// L-9 MCS 360 Mon 13 Sep 2010 : computer.cpp

/* This file contains the definition of the member operations
   of the class computer. */

#include "computer.h"
#include <sstream>

std::string Computer::to_string() const
{
   std::ostringstream s;

   s << "  Processor : " << Processor::to_string();
   s << std::endl;
   s << "     Memory : " << Memory::to_string();

   return s.str();
}

