I tried to compile following code from:
https://www.mql5.com/en/articles/260
There is a zip at bottom of the page. But I got compile error:
But If i change .Add(NodeInfo) to something like .Add(NodeInfo.Node) or other objects the compile will pass. Any idea why only "NodeInfo" does not work? Thanks
I tried to compile following code from:
https://www.mql5.com/en/articles/260
There is a zip at bottom of the page. But I got compile error:
But If i change .Add(NodeInfo) to something like .Add(NodeInfo.Node) or other objects the compile will pass. Any idea why only "NodeInfo" does not work? Thanks
I think you have to insert "public" in declaration class TNodeInfo (class TNodeInfo:public CObject).
I think you have to insert "public" in declaration class TNodeInfo (class TNodeInfo:public CObject).
C++ Tutorial: Private Inheritance - 2018
I think you have to insert "public" in declaration class TNodeInfo (class TNodeInfo:public CObject).
- Free trading apps
- Over 8,000 signals for copying
- Economic news for exploring financial markets
You agree to website policy and terms of use
I tried to compile following code from:
https://www.mql5.com/en/articles/260
There is a zip at bottom of the page. But I got compile error:
But If i change .Add(NodeInfo) to something like .Add(NodeInfo.Node) or other objects the compile will pass. Any idea why only "NodeInfo" does not work? Thanks