I use MonkSVG lib. Here is an example of code:
Here is a part of code:
OpenVG_SVGHandler::OpenVG_SVGHandler()
: ISVGHandler()
, _mode( kGroupParseMode )
, _current_group( &_root_group )
, _blackBackFill( 0 )
, _batch( 0 )
, _use_opacity( 1 )
, _has_transparent_colors( false )
As I understand the first one - ISVGHandler()
- means the calling of the parent constructor without params.
So:
what do the other params mean?
_current_group( &_root_group )
means I need to pass an additional parameter to it, isn't it?For example, is there any difference between
_batch(0)
andbatch = 0;
?has an order any influence?