digitalmars.D - <Novice> Friend Classes
- aelmetwaly (3/3) Nov 06 2004 Hi there,
 - Ben Hinkle (5/8) Nov 06 2004 if the files are in the same package you can use package protection inst...
 
Hi there, How can I access private data member of friend class on different files, like in C++?
 Nov 06 2004
"aelmetwaly" <aelmetwaly gawab.com> wrote in message news:cmj7qp$2h2u$1 digitaldaemon.com...Hi there, How can I access private data member of friend class on different files, like in C++?if the files are in the same package you can use package protection instead of private. Private members are only visible in the module. See http://www.digitalmars.com/d/attribute.html for more info.
 Nov 06 2004








 
 
 
 "Ben Hinkle" <bhinkle mathworks.com>