#include <Directory.h>
Inheritance diagram for PathElement:
Definition at line 1008 of file Directory.h.
Public Member Functions | |
bool | ChangeExtension (const char *newExtension) |
Changes the extension of the path element. | |
PathElement * | Clone () |
Creates a new instance of the path element with the same content. | |
char * | GetName () |
Returns the content of the path element. | |
PathElement * | GetNext () const |
Returns the next ContainingListItem in the list chain. | |
PathElement * | GetNextElement () |
Returns the next path element. | |
PathElement * | GetPrev () const |
Returns the previous ContainingListItem in the list chain. | |
PathElement * | GetPrevElement () |
Returns the previous path element. | |
PathElement (const char *Name) | |
Creates a new path element from a string template. | |
PathElement () | |
Creates an empty path element. | |
void | SetName (const char *name) |
Sets the content of the path element. | |
~PathElement () | |
Destroys the path element. | |
Private Attributes | |
char * | Name |
The content of the path element itself. |
|
Creates an empty path element.
|
|
Creates a new path element from a string template.
|
|
Destroys the path element.
|
|
Changes the extension of the path element.
|
|
Creates a new instance of the path element with the same content.
|
|
Returns the content of the path element.
|
|
Returns the next ContainingListItem in the list chain.
|
|
Returns the next path element.
|
|
Returns the previous ContainingListItem in the list chain.
|
|
Returns the previous path element.
|
|
Sets the content of the path element. After the content has been set, it is no longer used.
|
|
The content of the path element itself.
Definition at line 1022 of file Directory.h. |