#include "newClass.h"

void newClass::newadd(int x) {
  this->newdata.push_back(x);
}

int newClass::newpop() {
  return this->newdata.front();
}
