static char alarminfo_id[] = "$Header: /usr/tiburon/unix/gui/tmacs/RCS/alarminfo.cc,v 1.1 1996/07/22 10:42:23 oreilly Exp $";


/*
$Log: alarminfo.cc,v $
Revision 1.1  1996/07/22 10:42:23  oreilly
First external release

*/
#include <stdio.h>
#include <string.h>
#include <stdlib.h>
#define MAIN
#include "Alarm.h"

main(int argc, char **argv)
{
  for (int type = 0; type < (int )UnkAlarmType; type++)
  {
    printf("%s\n", Alarm::typeMnemonic((AlarmType )type));
    for (int value = 0; ; value++)
    {
      char *mnem = Alarm::valueMnemonic((AlarmType )type, value);
      if (!strcmp(mnem, Alarm::UnkValueMnem))
	break;
      
      printf("   %s\n", mnem);
    }
    printf("\n");
  }

  exit(0);
}
