R
Rahul
Hi Everyone,
I have a function defined in a source file,
sample.cpp
int doit()
{
cout<<"in doit function"<<endl;
}
Now i need to make sure that this function is not overloaded by other
developers, is there anyway to ensure the same?
I have a function defined in a source file,
sample.cpp
int doit()
{
cout<<"in doit function"<<endl;
}
Now i need to make sure that this function is not overloaded by other
developers, is there anyway to ensure the same?