Example #1
0
        public static CallReceiveTone fromRaw(byte[] rawData, int offset, int bit)
        {
            CallReceiveTone sp = new CallReceiveTone(offset, bit);

            sp.fromRaw(rawData);
            return(sp);
        }
Example #2
0
 private void setDataFromRawData()
 {
     callId = CallId.fromRaw(rawData);
     cType  = CType.fromRaw(rawData);
     callReceiveTone.fromRaw(rawData);
     name = Name.fromRaw(rawData);
 }