// Project 2
// CS2604 : Data Structures
// Hussein Suleman
// 14 July 1999

// ---------------------------------------------------------------------

#include <stdlib.h>
#include <string.h>

#include "window.h"

Window::Window ( char *s )
{
   Data = (char *)malloc(strlen (s)+1);
   strcpy (Data, s);
}

Window::~Window ()
{
   free (Data);
}
