예제 #1
0
                public rlc_AM_Type Decode(BitArrayInputStream input)
                {
                    rlc_AM_Type type = new rlc_AM_Type();

                    type.InitDefaults();
                    type.statusReportRequired = input.ReadBit() == 1;
                    return(type);
                }
예제 #2
0
파일: PDCP.cs 프로젝트: ouyh18/LtePlatform
 public rlc_AM_Type Decode(BitArrayInputStream input)
 {
     rlc_AM_Type type = new rlc_AM_Type();
     type.InitDefaults();
     type.statusReportRequired = input.ReadBit() == 1;
     return type;
 }