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

                        type.InitDefaults();
                        BitMaskStream stream = new BitMaskStream(input, 1);

                        if (stream.Read())
                        {
                            const int nBits = 1;
                            type.csi_ReportMode_r11 = (csi_ReportMode_r11_Enum)input.readBits(nBits);
                        }
                        return(type);
                    }
예제 #2
0
 public widebandCQI_r11_Type Decode(BitArrayInputStream input)
 {
     widebandCQI_r11_Type type = new widebandCQI_r11_Type();
     type.InitDefaults();
     BitMaskStream stream = new BitMaskStream(input, 1);
     if (stream.Read())
     {
         const int nBits = 1;
         type.csi_ReportMode_r11 = (csi_ReportMode_r11_Enum)input.readBits(nBits);
     }
     return type;
 }