// $RCSfile: Widget.h,v $
#ifndef Widget_h
#define Widget_h

class Widget {
public:
  virtual void Draw() = 0;
};

#endif
