#ifndef _MICROPAGE_H
#define _MICROPAGE_H
static char MicroPage_h_id[] = "$Header: /usr/tiburon/unix/gui/tmacs/RCS/MicroPage.h,v 1.2 1998/02/23 16:12:15 oreilly Exp $";

/*
$Log: MicroPage.h,v $
Revision 1.2  1998/02/23 16:12:15  oreilly
*** empty log message ***

 * Revision 1.1  96/10/28  09:13:50  09:13:50  oreilly (Thomas C. O'Reilly)
 * Initial revision
 * 
*/


#include <Vk/VkComponent.h>
#include "ErrorHandler.h"
#include "array.h"

class MicroPage : public VkComponent, public ErrorHandler 
{
  public:
  MicroPage(const char *name, Widget parent);
  ~MicroPage();
  
  const char *className()
  {
    return "MicroPage";
  }
  
  protected:
};


#endif
