Commit 5389d1f7 authored by mullers's avatar mullers
Browse files

2 new types added

parent 50707859
Loading
Loading
Loading
Loading
+2 −0
Original line number Original line Diff line number Diff line
@@ -56,6 +56,7 @@


    type bitstring  Bit48   length(48) with {encode "length(48)"};
    type bitstring  Bit48   length(48) with {encode "length(48)"};
    type bitstring  Bit64   length(64) with {encode "length(64)"};
    type bitstring  Bit64   length(64) with {encode "length(64)"};
	type bitstring  Bit72   length(72) with {encode "length(72)"};
    type bitstring  Bit128  length(128) with {encode "length(128)"};
    type bitstring  Bit128  length(128) with {encode "length(128)"};
    type bitstring  Bit144  length(144) with {encode "length(144)"};
    type bitstring  Bit144  length(144) with {encode "length(144)"};


@@ -127,6 +128,7 @@
    const Oct4    c_4ZeroBytes := int2oct(0,4);
    const Oct4    c_4ZeroBytes := int2oct(0,4);
    const Oct6    c_6ZeroBytes := int2oct(0,6);
    const Oct6    c_6ZeroBytes := int2oct(0,6);
    const Oct8    c_8ZeroBytes := int2oct(0,8);
    const Oct8    c_8ZeroBytes := int2oct(0,8);
	const Oct9    c_9ZeroBytes := int2oct(0,9);
    const Oct12   c_12ZeroBytes := int2oct(0,12);
    const Oct12   c_12ZeroBytes := int2oct(0,12);
    const Oct16   c_16ZeroBytes := int2oct(0,16);
    const Oct16   c_16ZeroBytes := int2oct(0,16);
    const Oct20   c_20ZeroBytes := int2oct(0,20);
    const Oct20   c_20ZeroBytes := int2oct(0,20);
+1 −0
Original line number Original line Diff line number Diff line
@@ -82,6 +82,7 @@ module LibCommon_TextStrings language "TTCN-3:2005" {
    type charstring String15   length(15) with { encode "length(15)"};
    type charstring String15   length(15) with { encode "length(15)"};
    type charstring String16   length(16) with { encode "length(16)"};
    type charstring String16   length(16) with { encode "length(16)"};


	type charstring String1To13 length(1..13) with {encode "length(1..13)"};
    type charstring String1To63  length(1..63) with {encode "length(1..63)"};
    type charstring String1To63  length(1..63) with {encode "length(1..63)"};
    type charstring String1To64  length(1..64) with {encode "length(1..64)"};
    type charstring String1To64  length(1..64) with {encode "length(1..64)"};
    type charstring String1To127 length(1..127) with {encode "length(1..127)"};
    type charstring String1To127 length(1..127) with {encode "length(1..127)"};