#include "bert.h"
#include <stdio.h>


Bert::Bert(char *s)
{
  printf("Creating new Bert (%s)\n", s);
  str = s;
}

Bert::~Bert()
{
  printf("Bert destructor called (%s)\n", str.c_str());
}

void Bert::add_bert()
{
  str += "bert";
}

string Bert::getString()
{
  return str;
}

int Bert::getLength()
{
  return str.length();
}

