// 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. class AssociativeArrayNode extends Object; /* A binary search tree (BST) node. Nodes are ordered on their key; the key must be a type that supports < and ==. Associated with each key is a value; value can be any arbitrary type that supports assignment. This is really just a struct (no member functions). A class is used to permit the new operator in UnrealScript to work correctly. */ var string key; var string value; var AssociativeArrayNode left_child, right_child, parent; defaultproperties { parent=None left_child=None right_child=None }