diff -r 9e7e3ffc5800 -r 3b126b43392b GBEncodedString.st --- /dev/null Thu Jan 01 00:00:00 1970 +0000 +++ b/GBEncodedString.st Wed Apr 17 18:51:49 1996 +0200 @@ -0,0 +1,33 @@ +TwoByteString subclass:#GBEncodedString + instanceVariableNames:'' + classVariableNames:'' + poolDictionaries:'' + category:'Collections-Text' +! + +!GBEncodedString class methodsFor:'documentation'! + +documentation +" + GBEncodedString represents 16bit strings encoded in GB (GuoBiao), + (with high bit set). This encoding is Mainland China's national standard. + Most of you are probably not interrested in those ... +" + + + +! ! + +!GBEncodedString methodsFor:'queries'! + +encoding + ^ #gb + + "Created: 17.4.1996 / 15:44:26 / cg" +! ! + +!GBEncodedString class methodsFor:'documentation'! + +version + ^ '$Header: /cvs/stx/stx/libbasic2/GBEncodedString.st,v 1.1 1996-04-17 16:51:49 cg Exp $' +! !