In Windev, is it possible to declare multiple constructors with different scopes? Seems not.
For example:
PROCEDURE CONSTRUCTOR (param1, param2)
...
PROCEDURE PROTECTED CONSTRUCTOR (paramx, paramy, paramz)
...
When I'm trying to do things this way it gives me an error saying that attributes public, protected and private has to be the same between syntaxes of a same procedure.