/*
 * room.cpp
 *
 * Gouverneur Th. - Cuisinier Gi.
 *
 * Definition of a room
 */

#include <room.h>

using namespace std;

Room::Room() : num(""), type("")
{
}

Room::Room(string n, string t) : num(n), type(t)
{
}

Room::~Room()
{
}

/* --------------------------------------------------- */

Reservation::Reservation() : nom(""), nbr(""), room(NULL)
{
}

Reservation::Reservation(string n, string dat, string nb) : nom(n), d(atoi(dat.c_str())), nbr(nb), room(NULL)
{
}

Reservation::~Reservation()
{
}
