T
Todd
How do I prevent some of my classes in my class library
from being seen externally?
I have one class that I want everyone to see and use.
But that class itself, internally uses several other
classes for support and implementation.
When I reference my class library from another project,
that other project also sees all the other supporting
classes, which makes things very muddled.
I'm using managed C++ code to build this class library.
I can't seem to figure out how to make the ONE class
public, but all the remaining ones private?
Is there a way?
from being seen externally?
I have one class that I want everyone to see and use.
But that class itself, internally uses several other
classes for support and implementation.
When I reference my class library from another project,
that other project also sees all the other supporting
classes, which makes things very muddled.
I'm using managed C++ code to build this class library.
I can't seem to figure out how to make the ONE class
public, but all the remaining ones private?
Is there a way?