I would like to hide access to a Class I wrote in the interface of a unit to be used only for the following class which is accessable from other units. I don't want this class to be used outside of the the unit but it needs to be in the interface section prior to the main class.
I know I can create another unit that only this unit will use and thus this class will not be seen, but I want to keep all of this within the same unit.
I guess what I need is a PRIVATE statement like this.
TmyClass = Class(...) Private
something like that, can I do this?