Skeletal implementation of new characterset and screen methods.

This commit is contained in:
Gregory John Casamento 2019-04-08 07:36:38 -04:00
parent 0a77ddb0d2
commit 41f4fa411a
4 changed files with 67 additions and 0 deletions

View file

@ -833,6 +833,31 @@ static Class concreteMutableClass = nil;
return nil;
}
+ (id) URLFragmentAllowedCharacterSet;
{
return nil;
}
+ (id) URLPasswordAllowedCharacterSet;
{
return nil;
}
+ (id) URLPathAllowedCharacterSet;
{
return nil;
}
+ (id) URLQueryAllowedCharacterSet;
{
return nil;
}
+ (id) URLUserAllowedCharacterSet
{
return nil;
}
- (NSData*) bitmapRepresentation
{
BOOL (*imp)(id, SEL, unichar);