see these class:
class test
{
public:
void Created(){};
test()
{
Created();
}
};
now we can create objects from it. ok.
but can i overloading the scope-resolution ('::') for the object accept and change the Created() function?