show/hide this revision's text 2 added 159 characters in body

No, but you could add a method that takes a reference/pointer to a CFun class - you just won't have access to private data:

void Hello(CFun &fun)
{
    cout << "hello" << endl;
}

This is probably the best you'll be able to do. As pointed out by litb - this function has to be in the same namespace as CFun. Fortunately, namespaces, unlike classes, can be added to in multiple places.

show/hide this revision's text 1

No, but you could add a method that takes a reference/pointer to a CFun class - you just won't have access to private data:

void Hello(CFun &fun)
{
    cout << "hello" << endl;
}

This is probably the best you'll be able to do.