
/**************************************************************************************************/
/*                                                                                                */
/*  Name:  DarC KonQuesT                                                                          */
/*  Program:  #3                                                                                  */
/*  Date:  2005.11.07                                                                             */
/*  Purpose:                                                                                      */
/*       a program that makes use of the SpellCheck class (which uses AVLTree class)              */
/*     to make a spell checker.                                                                   */
/*                                                                                                */
/*                                                                                                */
/**************************************************************************************************/

#include <iostream>
#include "SpellCheck.h"

using namespace std;

int main()
{
  SpellCheck speller;

  speller.readDictionaryFile();
  speller.readDocumentFile();
  speller.compare();

  return 0;
}

