#include <stdio.h>
#include <malloc.h>
#include <string.h>
#include "Preference.h"

Preference::Preference(const char *keyword, const char *value)
{
  _keyword = strdup(keyword);
  _value = strdup(value);
}


Preference::~Preference()
{
  free(_keyword);
  free(_value);
}


