Function CSPPtr<T>::New()
Description:
Creates a new object of type T points the contained pointer to it.
 |
Prototype:
void New();
Arguments:
No arguments (void).
Return value:
No return value (void).
Examples:
CSPPtr<char> sp; sp.New(); ... sp.Free();
See also:
member functions Free(), New( const T& )
|
|