Sophie

Sophie

distrib > Mandriva > 2010.0 > i586 > media > contrib-release > by-pkgid > 2053a0d9eaaf755b990f80ce4df504a7 > files > 382

waf-1.5.9-1mdv2010.0.noarch.rpm

#include <stdlib.h>
#include "Accumulator.h"

Accumulator::Accumulator():m_total(0)
{
}

void Accumulator::accumulate(const char * data)
{
  m_total += strtol(data, 0, 0);
}

int Accumulator::total() const
{
  return m_total;
}