/************************************************************************/
/* Copyright 1998 MBARI							*/
/************************************************************************/
#ifndef _MICROPAGE_H
#define _MICROPAGE_H
static char MicroPage_h_id[] = "$Header: /u/oreilly/rov/tmacs/RCS/MicroPage.h,v 1.3 1998/12/18 21:07:21 oreilly Exp $";

/*
$Log: MicroPage.h,v $
Revision 1.3  1998/12/18 21:07:21  oreilly
Added documentation

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

DESCRIPTION
Manages displays of micro GUIs

AUTHOR
Tom O'Reilly
*/
class MicroPage : public VkComponent, public ErrorHandler 
{
  public:
  MicroPage(const char *name, Widget parent);
  ~MicroPage();
  
  const char *className()
  {
    return "MicroPage";
  }
  
  protected:
};


#endif
