awips2/nativeLib/rary.ohd.ifp/inc/SaveTSMod.h
root 06a8b51d6d Initial revision of AWIPS2 11.9.0-7p5
Former-commit-id: 64fa9254b946eae7e61bbc3f513b7c3696c4f54f
2012-01-06 08:55:05 -06:00

33 lines
1,012 B
C

/* ***************************************** */
/* File: SaveTSMod.h */
/* Date: March 2002 */
/* Author: KWZ */
/* Purpose: */
/* */
/* ***************************************** */
#ifndef SaveTSMod_H
#define SaveTSMod_H
#include "Mods_info.h"
typedef struct _ModKeywords
{
char TSID[9] ; /*Time series operation ID*/
char TSType[5]; /*Time series tarce type*/
int TimeInterval ; /*Time series time interval*/
int NumOps; /*length of OpTypes and OpNames*/
char **OpTypes; /*An array of strings operation type*/
char **OpNames; /*An array of strings operation name*/
int ModIndex; /* Index identifying current ModArray */
/* position */
ModInfo *ModArray[MAX_MODS]; /* Array of pointers to structures for */
} ModKeywords;
void Save_TSChange(int GraphIndex,int TraceIndex, ModKeywords TSMods[],int *NumTS);
#endif