Example #1
0
 internal Key(FieldType type, int oid)
 {
     this.type      = type;
     ival           = oid;
     this.inclusion = 1;
 }
Example #2
0
File: Key.cs Project: kjk/volante
 internal Key(FieldType type, int oid)
 {
     this.type = type;
     ival = oid;
     this.inclusion = 1;
 }
Example #3
0
 internal Key(FieldType type, bool inclusive)
 {
     this.type      = type;
     this.inclusion = inclusive ? 1 : 0;
 }
Example #4
0
File: Key.cs Project: kjk/volante
 internal Key(FieldType type, bool inclusive)
 {
     this.type = type;
     this.inclusion = inclusive ? 1 : 0;
 }