CSplitpath:new
The new method creates an instance of the CSplitpath class. Two constructors are available..
Note: This method's name uses all lower case to present it as the analog of the C++ new operator. Generally, the names of class methods begin with an uppercase letter but new and delete are different.
S = CSplitpath:new() |
|
|
|
S = CSplitpath:new( sString ) |
|
|
|
|
|
-- create a new CSplitpath for the string sPath |
|
-- other uses of the class go here, between new and delete. |
|
-- deletes the object and its associated memory. |