Advertisement
Guest User

Untitled

a guest
Mar 18th, 2019
52
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.25 KB | None | 0 0
  1. Node *NodeSet::getNode(int index){
  2. const Node *node = static_cast<const NodeSet*>(this)->getNode(index);
  3. return const_cast<Node*>(node);
  4. }
  5.  
  6. const Node *NodeSet::getNode(int index) const{
  7. //non-trivial code to get the correct node
  8. }
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement