Skip to content
Snippets Groups Projects
Commit bde410ca authored by Uwe Schulzweida's avatar Uwe Schulzweida
Browse files

add new taxis functions: taxisXXXVdateBounds and taxisXXXVtimeBounds

parent d2dc7de9
No related branches found
No related tags found
No related merge requests found
2008-12-?? Uwe Schulzweida <Uwe.Schulzweida@zmaw.de>
* add new function: streamSync
* add new taxis functions: taxisXXXVdateBounds and taxisXXXVtimeBounds
* Version 1.2.1 released
2008-08-13 Uwe Schulzweida <Uwe.Schulzweida@zmaw.de>
......
......@@ -678,6 +678,10 @@ void taxisDefRtime(int taxisID, int time);
int taxisHasBounds(int taxisID);
void taxisDefVdateBounds(int taxisID, int vdate_lb, int vdate_ub);
void taxisDefVtimeBounds(int taxisID, int vtime_lb, int vtime_ub);
void taxisInqVdateBounds(int taxisID, int *vdate_lb, int *vdate_ub);
void taxisInqVtimeBounds(int taxisID, int *vtime_lb, int *vtime_ub);
......
......@@ -682,6 +682,22 @@ void taxisInqVdateBounds(int taxisID, int *vdate_lb, int *vdate_ub)
}
void taxisDefVdateBounds(int taxisID, int vdate_lb, int vdate_ub)
{
static char func[] = "taxisDefVdateBounds";
TAXIS *taxisptr;
taxisptr = taxis_to_pointer(taxisID);
taxis_check_ptr(func, taxisptr);
taxisptr->vdate_lb = vdate_lb;
taxisptr->vdate_ub = vdate_ub;
taxisptr->has_bounds = TRUE;
}
/*
@Function taxisInqVtime
@Title Get the verification time
......@@ -725,6 +741,22 @@ void taxisInqVtimeBounds(int taxisID, int *vtime_lb, int *vtime_ub)
}
void taxisDefVtimeBounds(int taxisID, int vtime_lb, int vtime_ub)
{
static char func[] = "taxisDefVtimeBounds";
TAXIS *taxisptr;
taxisptr = taxis_to_pointer(taxisID);
taxis_check_ptr(func, taxisptr);
taxisptr->vtime_lb = vtime_lb;
taxisptr->vtime_ub = vtime_ub;
taxisptr->has_bounds = TRUE;
}
/*
@Function taxisInqRdate
@Title Get the reference date
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment