Loving 2.5 and the compile to class.
One of my code modules has a custom type defined. For example;
Type Point (X As Double, Y As Double)
Now when I compile this as a library this type is exposed (even though my Process_Globals is "private").
Is there a way to hide this Type from the being exposed by the library in the B4A IDE?
The example above is pretty simple but another custom type I have in the library has 10+ primitives. The type is only used internally by my code so the user doesn't need to see it.
One of my code modules has a custom type defined. For example;
Type Point (X As Double, Y As Double)
Now when I compile this as a library this type is exposed (even though my Process_Globals is "private").
Is there a way to hide this Type from the being exposed by the library in the B4A IDE?
The example above is pretty simple but another custom type I have in the library has 10+ primitives. The type is only used internally by my code so the user doesn't need to see it.