diff options
author | Jörg Frings-Fürst <debian@jff-webhosting.net> | 2018-03-19 19:55:58 +0100 |
---|---|---|
committer | Jörg Frings-Fürst <debian@jff-webhosting.net> | 2018-03-19 19:55:58 +0100 |
commit | d1a8285f818eb7e5c3d6a05709ea21a808490b8c (patch) | |
tree | 326578f0505cbed07cfe60de530022822dc237ac /app/bin/compound.h | |
parent | 16e9630b79f0a7a90c6cedb6781175bb8b337dc1 (diff) |
New upstream version 5.1.0upstream/5.1.0
Diffstat (limited to 'app/bin/compound.h')
-rw-r--r-- | app/bin/compound.h | 10 |
1 files changed, 9 insertions, 1 deletions
diff --git a/app/bin/compound.h b/app/bin/compound.h index a0de926..4845f78 100644 --- a/app/bin/compound.h +++ b/app/bin/compound.h @@ -1,4 +1,6 @@ -/* $Header: /home/dmarkle/xtrkcad-fork-cvs/xtrkcad/app/bin/compound.h,v 1.1 2005-12-07 15:47:08 rc-flyer Exp $ */ +/** \file compound.h + * Definitions and function prototypes for complex elements (eg. turnouts) + */ /* XTrkCad - Model Railroad CAD * Copyright (C) 2005 Dave Bullis @@ -21,6 +23,9 @@ #ifndef COMPOUND_H #define COMPOUND_H +#include "common.h" +#include "track.h" + typedef enum { TOnormal, TOadjustable, TOpierInfo, TOpier, TOcarDesc, TOlast } TOspecial_e; typedef struct { @@ -91,6 +96,9 @@ struct extraData { extern TRKTYP_T T_TURNOUT; extern TRKTYP_T T_STRUCTURE; +extern TRKTYP_T T_BEZIER; +extern TRKTYP_T T_BZRLIN; +extern TRKTYP_T T_CORNU; extern DIST_T curBarScale; extern dynArr_t turnoutInfo_da; extern dynArr_t structureInfo_da; |