// September 2015 // Levee Patroller / Dijk Patrouille // This source file is (c) by Deltares. This source file is open source but only available to select users. Do not redistribute without written permission of Stichting Deltares, Delft, The Netherlands. // This header has been automatically generated. //============================================================================= // Object that contains informations of kinds of measures that can be performed // // ------------------------------------------------------------ // Created by Rui Guimaraes // © 2006, Geodelft //============================================================================= class Measure extends Object editinlinenew; // List of Measures. var() enum EMeasures { MEA_CoverInnerSlopeWithFoil, MEA_CoverOuterSlopeWithFoil, MEA_SandBank_SlakeningSlope, MEA_Removewaste, MEA_ContainmentRing, MEA_SandbagsToe, MEA_SandbagsTop } MeasureType; var() bool bMeasureEffective; // If this measure is a good measure to stop the failure it is associated with var bool bMeasureTaken; // If measure was taken var(Events) Name EventMeasureTaken; // Action to be made when measure is taken (it will trigger this event) defaultproperties { EventMeasureTaken="" bMeasureEffective=true bMeasureTaken=false }