// sample amulet program to display an empty main window
//
// hussein suleman
// july 2000

#include <string>
#include <amulet.h>

// global Amulet definitions/declarations 

Am_Object MainWindow;   // main window object

// main program body

int main ()
{
   // initialize Amulet system
   Am_Initialize ();

   // create main window
	MainWindow = Am_Window.Create ("Student Information Database")
		.Set (Am_LEFT, 20)
		.Set (Am_TOP, 50)
		.Set (Am_WIDTH, 500)
		.Set (Am_HEIGHT, 300)
		.Set (Am_TITLE, "Student Information Database");

   // add all windows to screen
   Am_Screen.Add_Part (MainWindow);

	Am_Main_Event_Loop ();
  	
   Am_Cleanup ();

   return 0;
}

