When I develop some plugin for GCS, I have to read source code (headers), because we doesn't have API documentation.
So, headers reading not simple work, because I need public methods and properties, that scattered around file. For example, Vehicles.h:
public
private
public
signals
private
public
protected
signals
Common practice is place public methods and properties on the top of class in one section.
When I develop some plugin for GCS, I have to read source code (headers), because we doesn't have API documentation. So, headers reading not simple work, because I need public methods and properties, that scattered around file. For example, Vehicles.h:
public private public signals private public protected signals
Common practice is place public methods and properties on the top of class in one section.