R
Rem
I'm trying to understand how is it possible implement
function inside a .h file and not in a .cpp leaving
the .h only for the prototype.
For example:
private: ......
........
........
private: System::Void NewClick(System::Object * sender,
System::EventArgs * e)
{
//
}
how can this function stay inside a .h file?
function inside a .h file and not in a .cpp leaving
the .h only for the prototype.
For example:
private: ......
........
........
private: System::Void NewClick(System::Object * sender,
System::EventArgs * e)
{
//
}
how can this function stay inside a .h file?