#ifndef _TESTWINDOW_H
#define _TESTWINDOW_H
static char TestWindow_h_id[] = "$Header: /usr/tiburon/unix/gui/tmacs/RCS/TestWindow.h,v 1.1 1996/10/28 09:14:09 oreilly Exp $";

/*
$Log: TestWindow.h,v $
Revision 1.1  1996/10/28 09:14:09  oreilly
Initial revision

*/


#include <Vk/VkSimpleWindow.h>

class TestWindow : public VkSimpleWindow 
{
  public:
  TestWindow(const char *);
  ~TestWindow()
  {
  }
  
  virtual const char *className()
  {
    return "TestWindow";
  }
};

#endif
