/************************************************************************/
/* Copyright 1998 MBARI							*/
/************************************************************************/
#ifndef _PDUGFALARM_H
#define _PDUGFALARM_H

#include <Vk/VkComponent.h>
#include "AlarmedText.h"
#include "FlashingAlarmText.h"

/*
CLASS 
PduGfAlarm

DESCRIPTION
Display ground-fault value and alarm status for PDU

AUTHOR
Tom O'Reilly
*/
class PduGfAlarm : public VkComponent, public ErrorHandler
{
  public:

  PduGfAlarm(const char *name, Widget parent);
  ~PduGfAlarm();

  protected:

  AlarmedInt16Text *_valueText;
  FlashingAlarmText *_alarmText;
};

#endif
