/************************************************************************/
/* Copyright 1998 MBARI							*/
/************************************************************************/
#ifndef _COMMSPAGE_H
#define _COMMSPAGE_H
static char CommsPage_h_id[] = "$Header: /u/oreilly/rov/tmacs/RCS/CommsPage.h,v 1.2 1998/12/18 21:07:21 oreilly Exp $";


/*
$Log: CommsPage.h,v $
Revision 1.2  1998/12/18 21:07:21  oreilly
Added documentation

Revision 1.1  1997/09/10 08:46:09  oreilly
Initial revision

*/


#include <Vk/VkComponent.h>

/*
CLASS 
CommsPage

DESCRIPTION
Display CommRelays objects

AUTHOR
Tom O'Reilly
*/
class CommsPage : public VkComponent
{
  public:
  CommsPage(const char *name, Widget parent);
  ~CommsPage();
  
  const char *className()
  {
    return "CommsPage";
  }

  protected:
};

#endif

