Hi,
I want to add a child analyzer to my ConnSizeAnalyzer. I want to do this statically based on the child's Available() class method. The code will look something like:
if (ChildAnalyzerClass::Available())
AddChildanalyzer(ChildAnalyzer'sTag)
The question now is: do I add the child in the parent's constructor or the parent's Init() method? (I think it should work in either case and that Init() would be the right place to do it, but I'm not sure)
thx
Gregor