//////////////////////////////////////////////////////////////////////////////
// HelloWorld.hh
//////////////////////////////////////////////////////////////////////////////
#ifndef HelloWorld_HH
#define HelloWorld_HH
#include "SimpleShell.hh"

class HelloWorld : public SimpleShell {

protected:
  
   void   ok(Widget, XtPointer);
  
   Widget createShellArea (Widget);

public:

  HelloWorld (char *name) : SimpleShell (name) { };

};
#endif


