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