00001 /*************************************************************************** 00002 TimeSpecStruct.h - description 00003 ------------------- 00004 begin : ven mar 26 2004 00005 copyright : (C) 2004 by Daniele Lavatelli 00006 email : ldaniele@interfree.it 00007 ***************************************************************************/ 00008 00009 /*************************************************************************** 00010 * * 00011 * This program is free software; you can redistribute it and/or modify * 00012 * it under the terms of the GNU General Public License as published by * 00013 * the Free Software Foundation; either version 2 of the License, or * 00014 * (at your option) any later version. * 00015 * * 00016 ***************************************************************************/ 00017 00018 #ifndef TIME_SPEC_STRUCT_H 00019 00020 #define TIME_SPEC_STRUCT_H 00021 00023 typedef struct TimeSpecsType 00024 {int TimeStep; 00025 int ShortSteps; 00026 int LongSteps; 00027 int IntervalSteps; 00028 int MinWhistleSteps; 00029 int MinIntervalSteps; 00030 } TimeSpecsType; 00031 00033 00039 const TimeSpecsType TIME_SPECS_DEFAULT = {20,25,50,15,6,2}; 00040 00041 #endif