Possible Duplicate:
What is this weird colon-member syntax in the constructor?
I need to know what this code means:
Cman::Cman() :
m_pThread (NULL) //m_pThread is pointer to other class
{
}
I don't really understand this code.
What does this NULL
mean ?
Can I use it as a regular constructor ?