I have a public linked list class using a node class. Using the linked list class is a public inheritable only class, one of who's members is a protected dynamic array of type LinkedList. My issue is that when I place the linked list and node class in a separate module my inheritable only class yelps about exposing the protected array of type LinkedList outside the project yet it does not complain when the list and node classes are in the same module as the inheritable only class. What gives?
Shawn
