// 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 signal seen // See sub classes for more information // ------------------------------------------------------------ // Created by Rui Guimaraes // © 2006, Geodelft // // Date Id Modification // 2006-10-25 The Formatted code // 2007-07-11 Wsl Created function Duplicate() //============================================================================= class SignalUprise extends Signal editinlinenew; //============================================================================= // Date Id Modification // 2007-07-11 Wsl Created //============================================================================= function Signal Duplicate() { local SignalUprise returner; // get new Signal with duplicate values from Signal common properties returner = SignalUprise(GetSignalDuplicate()); // there are no properties specific to this Signal type return returner; } //============================================================================= // Date Id Modification // 2006-10-25 The Created //============================================================================= function bool IsEqual(Signal ASignal) { local bool LIsEqual; LIsEqual = Super.IsEqual(ASignal); // Add code here if properties are added to this class return LIsEqual; } //============================================================================= // Date Id Modification // 2006-10-25 The Created this header //============================================================================= defaultproperties { NL_DamageName="Opbolling" EN_DamageName="Uprise" SignalType=SIG_Uprise }