Beispiel #1
0
 public OperatorSignature(Operator operatorValue)
 {
     _operator   = operatorValue;
     _signatures = new OperatorSignatures(this);
                 #if USEVIRTUAL
                 #if USETYPEDLIST
     FParentSignatures = new TypedList(typeof(OperatorSignature), false);
                 #else
     FParentSignatures = new BaseList <OperatorSignature>();
                 #endif
                 #endif
 }
Beispiel #2
0
 public OperatorMap(string name) : base(name)
 {
     _signatures = new OperatorSignatures(null);
 }