#ifndef _TESTPANEL_H
#define _TESTPANEL_H
#include <Vk/VkSimpleWindow.h>
#include <Vk/VkComponent.h>

class TestPanel : public VkComponent
{
  public:
  TestPanel(const char *name, Widget parent);

  ~TestPanel()
  {
  }

  virtual const char *className()
  {
    return "TestPanel";
  }
};


class TestWindow : public VkSimpleWindow
{
  public:
  TestWindow(const char *);
  ~TestWindow()
  {
  }
  
  virtual const char *className()
  { 
    return "TestWindow";
  }
  
};


#endif
