예제 #1
0
 internal Key(FieldType type, int oid)
 {
     this.type      = type;
     ival           = oid;
     this.inclusion = 1;
 }
예제 #2
0
파일: Key.cs 프로젝트: kjk/volante
 internal Key(FieldType type, int oid)
 {
     this.type = type;
     ival = oid;
     this.inclusion = 1;
 }
예제 #3
0
 internal Key(FieldType type, bool inclusive)
 {
     this.type      = type;
     this.inclusion = inclusive ? 1 : 0;
 }
예제 #4
0
파일: Key.cs 프로젝트: kjk/volante
 internal Key(FieldType type, bool inclusive)
 {
     this.type = type;
     this.inclusion = inclusive ? 1 : 0;
 }