| FazBrowse GitHub Viewer | Trending | | Home |
| Tools: [Download Repo ZIP] [Original HTTPS Page] |
There was a type that caused confusion in understanding the concepts Earlier : static MyCustomNode::PortsList providedPorts(); This was incorrect because PortsList is not in MyCustomNode, it is inside the namespace BT, and since it is declared using namespace BT, This should be as follows static MyCustomNode::PortsList providedPorts();
| Back | FazBrowse Home | New Git URL |
There was a type that caused confusion in understanding the concepts
Earlier : static MyCustomNode::PortsList providedPorts(); This was incorrect
because PortsList is not in MyCustomNode, it is inside the namespace BT,
And since it is declared using namespace BT, this should be as follows
static PortsList MyCustomNode::providedPorts();
Or if namespace BT is not opened
staticBT::PortsList MyCustomNode::providedPorts();