You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
23 lines
500 B
23 lines
500 B
#ifndef LSQIN_DEFINED
|
|
#define LSQIN_DEFINED
|
|
|
|
#include "lsdefs.h"
|
|
#include "heights.h"
|
|
#include "lstflow.h"
|
|
#include "plsrun.h"
|
|
#include "plsqin.h"
|
|
|
|
typedef struct lsqin
|
|
{
|
|
LSTFLOW lstflowSubline;
|
|
PLSRUN plsrun; /* PLSRUN this cp belongs to */
|
|
LSCP cpFirstRun;
|
|
LSDCP dcpRun;
|
|
HEIGHTS heightsPresRun; /* In direction lstflowSubline */
|
|
long dupRun; /* In direction lstflowSubline */
|
|
long dvpPosRun; /* in direction of lstflowSubline */
|
|
|
|
} LSQIN;
|
|
|
|
|
|
#endif
|