Example #1
0
                        public widebandCQI_r10_Type Decode(BitArrayInputStream input)
                        {
                            widebandCQI_r10_Type type = new widebandCQI_r10_Type();

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

                            if (stream.Read())
                            {
                                const int nBits = 1;
                                type.csi_ReportMode_r10 = (csi_ReportMode_r10_Enum)input.readBits(nBits);
                            }
                            return(type);
                        }
Example #2
0
 public widebandCQI_r10_Type Decode(BitArrayInputStream input)
 {
     widebandCQI_r10_Type type = new widebandCQI_r10_Type();
     type.InitDefaults();
     BitMaskStream stream = new BitMaskStream(input, 1);
     if (stream.Read())
     {
         const int nBits = 1;
         type.csi_ReportMode_r10 = (csi_ReportMode_r10_Enum)input.readBits(nBits);
     }
     return type;
 }