I d like to group classes so they must be referenced like this:
Root.Web
Root.Mail
Root.Audio
Each of the above classes corresponds to a file:
Web.h
Mail.h
Audio.h
The goal is to use the above "Root" syntax rather than just:
Audio myAudio = [[Audio alloc] init];
Instead, it should look like:
Root.Audio myAudio = [[Root.Audio alloc] init];
Is Objective-C capable of doing that?