/*
 * Initial main.c file generated by Glade. Edit as required.
 * Glade will not overwrite this file.
 */

#ifdef HAVE_CONFIG_H
#  include <config.h>
#endif

#include <gnome.h>
#include <stdio.h>
#include <stdlib.h>
#include <time.h>
#include <glib.h>
#include "GUI.h"
#include "Support.h"

#define G_THREADS_ENABLED

int
main (int argc, char *argv[])
{
  GtkWidget *GUIWindow;
 
  
  
  
  g_thread_init(NULL); 
//  gtk_init(&argc, &argv);


#ifdef ENABLE_NLS
  bindtextdomain (PACKAGE, PACKAGE_LOCALE_DIR);
  textdomain (PACKAGE);
#endif
  

 gnome_init ("seniordesign", VERSION, argc, argv);

   /*  
   * The following code was added by Glade to create one of each component
   * (except popup menus), just so that you see something after building
   * the project. Delete any components that you don't want shown initially.
   */
  GUIWindow = create_GUIWindow ();
  gtk_widget_show (GUIWindow);
 
  gdk_threads_enter();
  gtk_main ();
  gdk_threads_leave();
  return 0;
}

