rwlogo

Rogue Wave Views
Foundation Package API Reference Guide

Product Documentation:

Rogue Wave Views
Documentation Home

List of all members | Public Member Functions
IlPathList Class Reference

The purpose of this class is to provide a way to order the search path of files. More...

#include <ilog/pathlist.h>

Public Member Functions

 IlPathList ()
 This constructor builds an empty IlPathList object. More...
 
 IlPathList (const IlString &string)
 This constructor builds a IlPathList object from the object string. More...
 
 ~IlPathList ()
 The destructor. More...
 
void addInList (const IlPathName &path)
 Adds at the end of the list "list" the IlvPathName path. More...
 
void addInList (const IlString &string)
 Adds at the end of the list "list" the IlvString path. More...
 
void addInList (const IlPathList &pathList)
 Adds at the end of the list "list" the IlvPathList pathList. More...
 
void addInPostList (const IlPathName &path)
 Adds at the end of the list "postList" the IlvPathName path. More...
 
void addInPostList (const IlString &string)
 Adds at the end of the list "postList" the IlvString path. More...
 
void addInPostList (const IlPathList &pathList)
 Adds at the end of the list "postList" the IlvPathList pathList. More...
 
void addInPrevList (const IlPathName &path)
 Adds at the end of the list "prevList" the IlvPathName path. More...
 
void addInPrevList (const IlString &string)
 Adds at the end of the list "prevList" the IlvString path. More...
 
void addInPrevList (const IlPathList &pathList)
 Adds at the end of the list "prevList" the IlvPathList pathList. More...
 
IlBoolean findInPath (const IlPathName &relative, IlPathName &result, IlBoolean verbose=IlFalse) const
 Searches for an existing file in the search path. More...
 
IlString getListString () const
 Returns a string that represents all the path names in the order defined by the list "list". More...
 
IlString getPostListString () const
 Returns a string that represents all the path names in the order defined by the list "postList". More...
 
IlString getPrevListString () const
 Returns a string that represents all the path names in the order defined by the list "prevList". More...
 
IlString getString () const
 Returns a string that represents the search path. More...
 
void insertInList (const IlPathName &path)
 Inserts at the beginning of the list "list" the IlvPathName path. More...
 
void insertInList (const IlString &string)
 Inserts at the beginning of the list "list" the IlvString path. More...
 
void insertInList (const IlPathList &pathList)
 Inserts at the beginning of the list "list" the IlvPathList pathList. More...
 
void insertInPostList (const IlPathName &path)
 Inserts at the beginning of the list "postList" the IlvPathName path. More...
 
void insertInPostList (const IlString &string)
 Inserts at the beginning of the list "postList" the IlvString path. More...
 
void insertInPostList (const IlPathList &pathList)
 Inserts at the beginning of the list "postList" the IlvPathList pathList. More...
 
void insertInPrevList (const IlPathName &path)
 Inserts at the beginning of the list "prevList" the IlvPathName path. More...
 
void insertInPrevList (const IlString &string)
 Inserts at the beginning of the list "prevList" the IlvString path. More...
 
void insertInPrevList (const IlPathList &pathList)
 Inserts at the beginning of the list "prevList" the IlvPathList pathList. More...
 
void removeFromList (const IlPathName &path)
 Removes from the list "list" the IlvPathName path. More...
 
void removeFromList (const IlString &string)
 Removes from the list "list" the IlvString path. More...
 
void removeFromPostList (const IlPathName &path)
 Removes from the list "postList" the IlvPathName path. More...
 
void removeFromPostList (const IlString &string)
 Removes from the list "postList" the IlvString path. More...
 
void removeFromPrevList (const IlPathName &path)
 Removes from the list "prevList" the IlvPathName path. More...
 
void removeFromPrevList (const IlString &string)
 Removes from the list "prevList" the IlvString path. More...
 
void setList (const IlPathName &path)
 Replaces the list "list" with the IlvPathName path. More...
 
void setList (const IlString &string)
 Replaces the list "list" with the IlvString path. More...
 
void setList (const IlPathList &pathList)
 Replaces the list "list" with the IlPathList pathList. More...
 
void setPostList (const IlPathName &path)
 Replaces the list "postList" with the IlvPathName path. More...
 
void setPostList (const IlString &string)
 Replaces the list "postList" with the IlvString path. More...
 
void setPostList (const IlPathList &pathList)
 Replaces the list "postList" with the IlPathList pathList. More...
 
void setPrevList (const IlPathName &path)
 Replaces the list "prevList" with the IlvPathName path. More...
 
void setPrevList (const IlString &string)
 Replaces the list "prevList" with the IlvString path. More...
 
void setPrevList (const IlPathList &pathList)
 Replaces the list "prevList" with the IlPathList pathList. More...
 
void unique ()
 Removes the duplicated paths.
 

Detailed Description

The purpose of this class is to provide a way to order the search path of files.

Library: ilog

This class has three sub-lists of path names that we will call: prevList, list, and postList.
The search for a relative path name is done according to the order given above. The search is stopped as soon as a file that matches is found.

See Also
IlPathName, IlString.

Constructor & Destructor Documentation

IlPathList::IlPathList ( )

This constructor builds an empty IlPathList object.

See Also
IlPathList::IlPathList(const IlString&), IlPathList::~IlPathList().
IlPathList::IlPathList ( const IlString string)

This constructor builds a IlPathList object from the object string.

This string defines a list of path name separated by a : on Unix and a ; on Windows. These path names are stored in list.

Parameters
stringA const reference to an IlString object.
See Also
IlPathList::IlPathList(), IlPathList::~IlPathList().
IlPathList::~IlPathList ( )

The destructor.

The destructor releases the resources used by the object.

See Also
IlPathList::IlPathList(), IlPathList::IlPathList(const IlString&).

Member Function Documentation

void IlPathList::addInList ( const IlPathName path)

Adds at the end of the list "list" the IlvPathName path.

Parameters
pathA const reference to an IlPathName object.
See Also
IlPathList::addInPrevList(const IlPathName&),
IlPathList::addInPrevList(const IlString&),
IlPathList::addInPrevList(const IlPathList&),
IlPathList::addInList(const IlString&),
IlPathList::addInList(const IlPathList&),
IlPathList::addInPostList(const IlPathName&),
IlPathList::addInPostList(const IlString&),
IlPathList::addInPostList(const IlPathList&),
IlPathList::insertInPrevList(const IlPathName&),
IlPathList::insertInPrevList(const IlString&),
IlPathList::insertInPrevList(const IlPathList&),
IlPathList::insertInList(const IlPathName&),
IlPathList::insertInList(const IlString&),
IlPathList::insertInList(const IlPathList&),
IlPathList::insertInPostList(const IlPathName&),
IlPathList::insertInPostList(const IlString&),
IlPathList::insertInPostList(const IlPathList&),
IlPathList::setPrevList(const IlPathName&),
IlPathList::setPrevList(const IlString&),
IlPathList::setPrevList(const IlPathList&),
IlPathList::setList(const IlPathName&),
IlPathList::setList(const IlString&),
IlPathList::setList(const IlPathList&),
IlPathList::setPostList(const IlPathName&),
IlPathList::setPostList(const IlString&),
IlPathList::setPostList(const IlPathList&),
IlPathList::removeFromPrevList(const IlPathName&),
IlPathList::removeFromPrevList(const IlString&),
IlPathList::removeFromList(const IlPathName&),
IlPathList::removeFromList(const IlString&),
IlPathList::removeFromPostList(const IlPathName&),
IlPathList::removeFromPostList(const IlString&).
void IlPathList::addInList ( const IlString string)

Adds at the end of the list "list" the IlvString path.

This string defines a list of path names separated by a : on Unix and a ; on Windows.

Parameters
pathA const reference to an String object.
See Also
IlPathList::addInPrevList(const IlPathName&),
IlPathList::addInPrevList(const IlString&),
IlPathList::addInPrevList(const IlPathList&),
IlPathList::addInList(const IlPathName&),
IlPathList::addInList(const IlPathList&),
IlPathList::addInPostList(const IlPathName&),
IlPathList::addInPostList(const IlString&),
IlPathList::addInPostList(const IlPathList&),
IlPathList::insertInPrevList(const IlPathName&),
IlPathList::insertInPrevList(const IlString&),
IlPathList::insertInPrevList(const IlPathList&),
IlPathList::insertInList(const IlPathName&),
IlPathList::insertInList(const IlString&),
IlPathList::insertInList(const IlPathList&),
IlPathList::insertInPostList(const IlPathName&),
IlPathList::insertInPostList(const IlString&),
IlPathList::insertInPostList(const IlPathList&),
IlPathList::setPrevList(const IlPathName&),
IlPathList::setPrevList(const IlString&),
IlPathList::setPrevList(const IlPathList&),
IlPathList::setList(const IlPathName&),
IlPathList::setList(const IlString&),
IlPathList::setList(const IlPathList&),
IlPathList::setPostList(const IlPathName&),
IlPathList::setPostList(const IlString&),
IlPathList::setPostList(const IlPathList&),
IlPathList::removeFromPrevList(const IlPathName&),
IlPathList::removeFromPrevList(const IlString&),
IlPathList::removeFromList(const IlPathName&),
IlPathList::removeFromList(const IlString&),
IlPathList::removeFromPostList(const IlPathName&),
IlPathList::removeFromPostList(const IlString&).
void IlPathList::addInList ( const IlPathList pathList)

Adds at the end of the list "list" the IlvPathList pathList.

Parameters
pathListA const reference to an IlPathlist object.
See Also
IlPathList::addInPrevList(const IlPathName&),
IlPathList::addInPrevList(const IlString&),
IlPathList::addInPrevList(const IlPathList&),
IlPathList::addInList(const IlPathName&),
IlPathList::addInList(const IlString&),
IlPathList::addInPostList(const IlPathName&),
IlPathList::addInPostList(const IlString&),
IlPathList::addInPostList(const IlPathList&),
IlPathList::insertInPrevList(const IlPathName&),
IlPathList::insertInPrevList(const IlString&),
IlPathList::insertInPrevList(const IlPathList&),
IlPathList::insertInList(const IlPathName&),
IlPathList::insertInList(const IlString&),
IlPathList::insertInList(const IlPathList&),
IlPathList::insertInPostList(const IlPathName&),
IlPathList::insertInPostList(const IlString&),
IlPathList::insertInPostList(const IlPathList&),
IlPathList::setPrevList(const IlPathName&),
IlPathList::setPrevList(const IlString&),
IlPathList::setPrevList(const IlPathList&),
IlPathList::setList(const IlPathName&),
IlPathList::setList(const IlString&),
IlPathList::setList(const IlPathList&),
IlPathList::setPostList(const IlPathName&),
IlPathList::setPostList(const IlString&),
IlPathList::setPostList(const IlPathList&),
IlPathList::removeFromPrevList(const IlPathName&),
IlPathList::removeFromPrevList(const IlString&),
IlPathList::removeFromList(const IlPathName&),
IlPathList::removeFromList(const IlString&),
IlPathList::removeFromPostList(const IlPathName&),
IlPathList::removeFromPostList(const IlString&).
void IlPathList::addInPostList ( const IlPathName path)

Adds at the end of the list "postList" the IlvPathName path.

Parameters
pathA const reference to an IlPathName object.
See Also
IlPathList::addInPrevList(const IlPathName&),
IlPathList::addInPrevList(const IlString&),
IlPathList::addInPrevList(const IlPathList&),
IlPathList::addInList(const IlPathName&),
IlPathList::addInList(const IlString&),
IlPathList::addInList(const IlPathList&),
IlPathList::addInPostList(const IlString&),
IlPathList::addInPostList(const IlPathList&),
IlPathList::insertInPrevList(const IlPathName&),
IlPathList::insertInPrevList(const IlString&),
IlPathList::insertInPrevList(const IlPathList&),
IlPathList::insertInList(const IlPathName&),
IlPathList::insertInList(const IlString&),
IlPathList::insertInList(const IlPathList&),
IlPathList::insertInPostList(const IlPathName&),
IlPathList::insertInPostList(const IlString&),
IlPathList::insertInPostList(const IlPathList&),
IlPathList::setPrevList(const IlPathName&),
IlPathList::setPrevList(const IlString&),
IlPathList::setPrevList(const IlPathList&),
IlPathList::setList(const IlPathName&),
IlPathList::setList(const IlString&),
IlPathList::setList(const IlPathList&),
IlPathList::setPostList(const IlPathName&),
IlPathList::setPostList(const IlString&),
IlPathList::setPostList(const IlPathList&),
IlPathList::removeFromPrevList(const IlPathName&),
IlPathList::removeFromPrevList(const IlString&),
IlPathList::removeFromList(const IlPathName&),
IlPathList::removeFromList(const IlString&),
IlPathList::removeFromPostList(const IlPathName&),
IlPathList::removeFromPostList(const IlString&).
void IlPathList::addInPostList ( const IlString string)

Adds at the end of the list "postList" the IlvString path.

This string defines a list of path names separated by a : on Unix and a ; on Windows.

Parameters
pathA const reference to an String object.
See Also
IlPathList::addInPrevList(const IlPathName&),
IlPathList::addInPrevList(const IlString&),
IlPathList::addInPrevList(const IlPathList&),
IlPathList::addInList(const IlPathName&),
IlPathList::addInList(const IlString&),
IlPathList::addInList(const IlPathList&),
IlPathList::addInPostList(const IlPathName&),
IlPathList::addInPostList(const IlPathList&),
IlPathList::insertInPrevList(const IlPathName&),
IlPathList::insertInPrevList(const IlString&),
IlPathList::insertInPrevList(const IlPathList&),
IlPathList::insertInList(const IlPathName&),
IlPathList::insertInList(const IlString&),
IlPathList::insertInList(const IlPathList&),
IlPathList::insertInPostList(const IlPathName&),
IlPathList::insertInPostList(const IlString&),
IlPathList::insertInPostList(const IlPathList&),
IlPathList::setPrevList(const IlPathName&),
IlPathList::setPrevList(const IlString&),
IlPathList::setPrevList(const IlPathList&),
IlPathList::setList(const IlPathName&),
IlPathList::setList(const IlString&),
IlPathList::setList(const IlPathList&),
IlPathList::setPostList(const IlPathName&),
IlPathList::setPostList(const IlString&),
IlPathList::setPostList(const IlPathList&),
IlPathList::removeFromPrevList(const IlPathName&),
IlPathList::removeFromPrevList(const IlString&),
IlPathList::removeFromList(const IlPathName&),
IlPathList::removeFromList(const IlString&),
IlPathList::removeFromPostList(const IlPathName&),
IlPathList::removeFromPostList(const IlString&).
void IlPathList::addInPostList ( const IlPathList pathList)

Adds at the end of the list "postList" the IlvPathList pathList.

Parameters
pathListA const reference to an IlPathlist object.
See Also
IlPathList::addInPrevList(const IlPathName&),
IlPathList::addInPrevList(const IlString&),
IlPathList::addInPrevList(const IlPathList&),
IlPathList::addInList(const IlPathName&),
IlPathList::addInList(const IlString&),
IlPathList::addInList(const IlPathList&),
IlPathList::addInPostList(const IlPathName&),
IlPathList::addInPostList(const IlString&),
IlPathList::insertInPrevList(const IlPathName&),
IlPathList::insertInPrevList(const IlString&),
IlPathList::insertInPrevList(const IlPathList&),
IlPathList::insertInList(const IlPathName&),
IlPathList::insertInList(const IlString&),
IlPathList::insertInList(const IlPathList&),
IlPathList::insertInPostList(const IlPathName&),
IlPathList::insertInPostList(const IlString&),
IlPathList::insertInPostList(const IlPathList&),
IlPathList::setPrevList(const IlPathName&),
IlPathList::setPrevList(const IlString&),
IlPathList::setPrevList(const IlPathList&),
IlPathList::setList(const IlPathName&),
IlPathList::setList(const IlString&),
IlPathList::setList(const IlPathList&),
IlPathList::setPostList(const IlPathName&),
IlPathList::setPostList(const IlString&),
IlPathList::setPostList(const IlPathList&),
IlPathList::removeFromPrevList(const IlPathName&),
IlPathList::removeFromPrevList(const IlString&),
IlPathList::removeFromList(const IlPathName&),
IlPathList::removeFromList(const IlString&),
IlPathList::removeFromPostList(const IlPathName&),
IlPathList::removeFromPostList(const IlString&).
void IlPathList::addInPrevList ( const IlPathName path)

Adds at the end of the list "prevList" the IlvPathName path.

Parameters
pathA const reference to an IlPathName object.
See Also
IlPathList::addInPrevList(const IlString&),
IlPathList::addInPrevList(const IlPathList&),
IlPathList::addInList(const IlPathName&),
IlPathList::addInList(const IlString&),
IlPathList::addInList(const IlPathList&),
IlPathList::addInPostList(const IlPathName&),
IlPathList::addInPostList(const IlString&),
IlPathList::addInPostList(const IlPathList&),
IlPathList::insertInPrevList(const IlPathName&),
IlPathList::insertInPrevList(const IlString&),
IlPathList::insertInPrevList(const IlPathList&),
IlPathList::insertInList(const IlPathName&),
IlPathList::insertInList(const IlString&),
IlPathList::insertInList(const IlPathList&),
IlPathList::insertInPostList(const IlPathName&),
IlPathList::insertInPostList(const IlString&),
IlPathList::insertInPostList(const IlPathList&),
IlPathList::setPrevList(const IlPathName&),
IlPathList::setPrevList(const IlString&),
IlPathList::setPrevList(const IlPathList&),
IlPathList::setList(const IlPathName&),
IlPathList::setList(const IlString&),
IlPathList::setList(const IlPathList&),
IlPathList::setPostList(const IlPathName&),
IlPathList::setPostList(const IlString&),
IlPathList::setPostList(const IlPathList&),
IlPathList::removeFromPrevList(const IlPathName&),
IlPathList::removeFromPrevList(const IlString&),
IlPathList::removeFromList(const IlPathName&),
IlPathList::removeFromList(const IlString&),
IlPathList::removeFromPostList(const IlPathName&),
IlPathList::removeFromPostList(const IlString&).
void IlPathList::addInPrevList ( const IlString string)

Adds at the end of the list "prevList" the IlvString path.

This string defines a list of path names separated by a : on Unix and a ; on Windows.

Parameters
pathA const reference to an String object.
See Also
IlPathList::addInPrevList(const IlPathName&),
IlPathList::addInPrevList(const IlPathList&),
IlPathList::addInList(const IlPathName&),
IlPathList::addInList(const IlString&),
IlPathList::addInList(const IlPathList&),
IlPathList::addInPostList(const IlPathName&),
IlPathList::addInPostList(const IlString&),
IlPathList::addInPostList(const IlPathList&),
IlPathList::insertInPrevList(const IlPathName&),
IlPathList::insertInPrevList(const IlString&),
IlPathList::insertInPrevList(const IlPathList&),
IlPathList::insertInList(const IlPathName&),
IlPathList::insertInList(const IlString&),
IlPathList::insertInList(const IlPathList&),
IlPathList::insertInPostList(const IlPathName&),
IlPathList::insertInPostList(const IlString&),
IlPathList::insertInPostList(const IlPathList&),
IlPathList::setPrevList(const IlPathName&),
IlPathList::setPrevList(const IlString&),
IlPathList::setPrevList(const IlPathList&),
IlPathList::setList(const IlPathName&),
IlPathList::setList(const IlString&),
IlPathList::setList(const IlPathList&),
IlPathList::setPostList(const IlPathName&),
IlPathList::setPostList(const IlString&),
IlPathList::setPostList(const IlPathList&),
IlPathList::removeFromPrevList(const IlPathName&),
IlPathList::removeFromPrevList(const IlString&),
IlPathList::removeFromList(const IlPathName&),
IlPathList::removeFromList(const IlString&),
IlPathList::removeFromPostList(const IlPathName&),
IlPathList::removeFromPostList(const IlString&).
void IlPathList::addInPrevList ( const IlPathList pathList)

Adds at the end of the list "prevList" the IlvPathList pathList.

Parameters
pathListA const reference to an IlPathlist object.
See Also
IlPathList::addInPrevList(const IlPathName&),
IlPathList::addInPrevList(const IlString&),
IlPathList::addInList(const IlPathName&),
IlPathList::addInList(const IlString&),
IlPathList::addInList(const IlPathList&),
IlPathList::addInPostList(const IlPathName&),
IlPathList::addInPostList(const IlString&),
IlPathList::addInPostList(const IlPathList&),
IlPathList::insertInPrevList(const IlPathName&),
IlPathList::insertInPrevList(const IlString&),
IlPathList::insertInPrevList(const IlPathList&),
IlPathList::insertInList(const IlPathName&),
IlPathList::insertInList(const IlString&),
IlPathList::insertInList(const IlPathList&),
IlPathList::insertInPostList(const IlPathName&),
IlPathList::insertInPostList(const IlString&),
IlPathList::insertInPostList(const IlPathList&),
IlPathList::setPrevList(const IlPathName&),
IlPathList::setPrevList(const IlString&),
IlPathList::setPrevList(const IlPathList&),
IlPathList::setList(const IlPathName&),
IlPathList::setList(const IlString&),
IlPathList::setList(const IlPathList&),
IlPathList::setPostList(const IlPathName&),
IlPathList::setPostList(const IlString&),
IlPathList::setPostList(const IlPathList&),
IlPathList::removeFromPrevList(const IlPathName&),
IlPathList::removeFromPrevList(const IlString&),
IlPathList::removeFromList(const IlPathName&),
IlPathList::removeFromList(const IlString&),
IlPathList::removeFromPostList(const IlPathName&),
IlPathList::removeFromPostList(const IlString&).
IlBoolean IlPathList::findInPath ( const IlPathName relative,
IlPathName result,
IlBoolean  verbose = IlFalse 
) const

Searches for an existing file in the search path.

The search is done by concatenating the path name relative to each path names of prevList, list, and postList (in this order). As soon as a file is found, this function return IlTrue and sets result to the corresponding value. If no file is found, this function returns IlFalse, and result is not modified.

Parameters
relativeA const reference to an IlPathName object.
resultA reference to an IlPathName object.
verboseAn IlvBoolean. The default value is IlFalse.
IlString IlPathList::getListString ( ) const

Returns a string that represents all the path names in the order defined by the list "list".

The path names are separated by a : on Unix and a ; on Windows.

See Also
IlPathList::getPrevListString, IlPathList::getString, IlPathList::getPostListString.
IlString IlPathList::getPostListString ( ) const

Returns a string that represents all the path names in the order defined by the list "postList".

The path names are separated by a : on Unix and a ; on Windows.

See Also
IlPathList::getString, IlPathList::getPrevListString, IlPathList::getListString.
IlString IlPathList::getPrevListString ( ) const

Returns a string that represents all the path names in the order defined by the list "prevList".

The path names are separated by a : on Unix and a ; on Windows.

See Also
IlPathList::getString, IlPathList::getListString, IlPathList::getPostListString.
IlString IlPathList::getString ( ) const

Returns a string that represents the search path.

The string contains all the path names in the order defined by the lists, separated by a : on Unix and a ; on Windows.

See Also
IlPathList::getPrevListString, IlPathList::getListString, IlPathList::getPostListString.
void IlPathList::insertInList ( const IlPathName path)

Inserts at the beginning of the list "list" the IlvPathName path.

Parameters
pathA const reference to an IlPathName object.
See Also
IlPathList::addInPrevList(const IlPathName&),
IlPathList::addInPrevList(const IlString&),
IlPathList::addInPrevList(const IlPathList&),
IlPathList::addInList(const IlPathName&),
IlPathList::addInList(const IlString&),
IlPathList::addInList(const IlPathList&),
IlPathList::addInPostList(const IlPathName&),
IlPathList::addInPostList(const IlString&),
IlPathList::addInPostList(const IlPathList&),
IlPathList::insertInPrevList(const IlPathName&),
IlPathList::insertInPrevList(const IlString&),
IlPathList::insertInPrevList(const IlPathList&),
IlPathList::insertInList(const IlString&),
IlPathList::insertInList(const IlPathList&),
IlPathList::insertInPostList(const IlPathName&),
IlPathList::insertInPostList(const IlString&),
IlPathList::insertInPostList(const IlPathList&),
IlPathList::setPrevList(const IlPathName&),
IlPathList::setPrevList(const IlString&),
IlPathList::setPrevList(const IlPathList&),
IlPathList::setList(const IlPathName&),
IlPathList::setList(const IlString&),
IlPathList::setList(const IlPathList&),
IlPathList::setPostList(const IlPathName&),
IlPathList::setPostList(const IlString&),
IlPathList::setPostList(const IlPathList&),
IlPathList::removeFromPrevList(const IlPathName&),
IlPathList::removeFromPrevList(const IlString&),
IlPathList::removeFromList(const IlPathName&),
IlPathList::removeFromList(const IlString&),
IlPathList::removeFromPostList(const IlPathName&),
IlPathList::removeFromPostList(const IlString&).
void IlPathList::insertInList ( const IlString string)

Inserts at the beginning of the list "list" the IlvString path.

This string defines a list of path names separated by a : on Unix and a ; on Windows.

Parameters
pathA const reference to an IlString object.
See Also
IlPathList::addInPrevList(const IlPathName&),
IlPathList::addInPrevList(const IlString&),
IlPathList::addInPrevList(const IlPathList&),
IlPathList::addInList(const IlPathName&),
IlPathList::addInList(const IlString&),
IlPathList::addInList(const IlPathList&),
IlPathList::addInPostList(const IlPathName&),
IlPathList::addInPostList(const IlString&),
IlPathList::addInPostList(const IlPathList&),
IlPathList::insertInPrevList(const IlPathName&),
IlPathList::insertInPrevList(const IlString&),
IlPathList::insertInPrevList(const IlPathList&),
IlPathList::insertInList(const IlPathName&),
IlPathList::insertInList(const IlPathList&),
IlPathList::insertInPostList(const IlPathName&),
IlPathList::insertInPostList(const IlString&),
IlPathList::insertInPostList(const IlPathList&),
IlPathList::setPrevList(const IlPathName&),
IlPathList::setPrevList(const IlString&),
IlPathList::setPrevList(const IlPathList&),
IlPathList::setList(const IlPathName&),
IlPathList::setList(const IlString&),
IlPathList::setList(const IlPathList&),
IlPathList::setPostList(const IlPathName&),
IlPathList::setPostList(const IlString&),
IlPathList::setPostList(const IlPathList&),
IlPathList::removeFromPrevList(const IlPathName&),
IlPathList::removeFromPrevList(const IlString&),
IlPathList::removeFromList(const IlPathName&),
IlPathList::removeFromList(const IlString&),
IlPathList::removeFromPostList(const IlPathName&),
IlPathList::removeFromPostList(const IlString&).
void IlPathList::insertInList ( const IlPathList pathList)

Inserts at the beginning of the list "list" the IlvPathList pathList.

Parameters
pathListA const reference to an IlPathlist object.
See Also
IlPathList::addInPrevList(const IlPathName&),
IlPathList::addInPrevList(const IlString&),
IlPathList::addInPrevList(const IlPathList&),
IlPathList::addInList(const IlPathName&),
IlPathList::addInList(const IlString&),
IlPathList::addInList(const IlPathList&),
IlPathList::addInPostList(const IlPathName&),
IlPathList::addInPostList(const IlString&),
IlPathList::addInPostList(const IlPathList&),
IlPathList::insertInPrevList(const IlPathName&),
IlPathList::insertInPrevList(const IlString&),
IlPathList::insertInPrevList(const IlPathList&),
IlPathList::insertInList(const IlPathName&),
IlPathList::insertInList(const IlString&),
IlPathList::insertInPostList(const IlPathName&),
IlPathList::insertInPostList(const IlString&),
IlPathList::insertInPostList(const IlPathList&),
IlPathList::setPrevList(const IlPathName&),
IlPathList::setPrevList(const IlString&),
IlPathList::setPrevList(const IlPathList&),
IlPathList::setList(const IlPathName&),
IlPathList::setList(const IlString&),
IlPathList::setList(const IlPathList&),
IlPathList::setPostList(const IlPathName&),
IlPathList::setPostList(const IlString&),
IlPathList::setPostList(const IlPathList&),
IlPathList::removeFromPrevList(const IlPathName&),
IlPathList::removeFromPrevList(const IlString&),
IlPathList::removeFromList(const IlPathName&),
IlPathList::removeFromList(const IlString&),
IlPathList::removeFromPostList(const IlPathName&),
IlPathList::removeFromPostList(const IlString&).
void IlPathList::insertInPostList ( const IlPathName path)

Inserts at the beginning of the list "postList" the IlvPathName path.

Parameters
pathA const reference to an IlPathName object.
See Also
IlPathList::addInPrevList(const IlPathName&),
IlPathList::addInPrevList(const IlString&),
IlPathList::addInPrevList(const IlPathList&),
IlPathList::addInList(const IlPathName&),
IlPathList::addInList(const IlString&),
IlPathList::addInList(const IlPathList&),
IlPathList::addInPostList(const IlPathName&),
IlPathList::addInPostList(const IlString&),
IlPathList::addInPostList(const IlPathList&),
IlPathList::insertInPrevList(const IlPathName&),
IlPathList::insertInPrevList(const IlString&),
IlPathList::insertInPrevList(const IlPathList&),
IlPathList::insertInList(const IlPathName&),
IlPathList::insertInList(const IlString&),
IlPathList::insertInList(const IlPathList&),
IlPathList::insertInPostList(const IlString&),
IlPathList::insertInPostList(const IlPathList&),
IlPathList::setPrevList(const IlPathName&),
IlPathList::setPrevList(const IlString&),
IlPathList::setPrevList(const IlPathList&),
IlPathList::setList(const IlPathName&),
IlPathList::setList(const IlString&),
IlPathList::setList(const IlPathList&),
IlPathList::setPostList(const IlPathName&),
IlPathList::setPostList(const IlString&),
IlPathList::setPostList(const IlPathList&),
IlPathList::removeFromPrevList(const IlPathName&),
IlPathList::removeFromPrevList(const IlString&),
IlPathList::removeFromList(const IlPathName&),
IlPathList::removeFromList(const IlString&),
IlPathList::removeFromPostList(const IlPathName&),
IlPathList::removeFromPostList(const IlString&).
void IlPathList::insertInPostList ( const IlString string)

Inserts at the beginning of the list "postList" the IlvString path.

This string defines a list of path names separated by a : on Unix and a ; on Windows.

Parameters
pathA const reference to an IlString object.
See Also
IlPathList::addInPrevList(const IlPathName&),
IlPathList::addInPrevList(const IlString&),
IlPathList::addInPrevList(const IlPathList&),
IlPathList::addInList(const IlPathName&),
IlPathList::addInList(const IlString&),
IlPathList::addInList(const IlPathList&),
IlPathList::addInPostList(const IlPathName&),
IlPathList::addInPostList(const IlString&),
IlPathList::addInPostList(const IlPathList&),
IlPathList::insertInPrevList(const IlPathName&),
IlPathList::insertInPrevList(const IlString&),
IlPathList::insertInPrevList(const IlPathList&),
IlPathList::insertInList(const IlPathName&),
IlPathList::insertInList(const IlString&),
IlPathList::insertInList(const IlPathList&),
IlPathList::insertInPostList(const IlPathName&),
IlPathList::insertInPostList(const IlPathList&),
IlPathList::setPrevList(const IlPathName&),
IlPathList::setPrevList(const IlString&),
IlPathList::setPrevList(const IlPathList&),
IlPathList::setList(const IlPathName&),
IlPathList::setList(const IlString&),
IlPathList::setList(const IlPathList&),
IlPathList::setPostList(const IlPathName&),
IlPathList::setPostList(const IlString&),
IlPathList::setPostList(const IlPathList&),
IlPathList::removeFromPrevList(const IlPathName&),
IlPathList::removeFromPrevList(const IlString&),
IlPathList::removeFromList(const IlPathName&),
IlPathList::removeFromList(const IlString&),
IlPathList::removeFromPostList(const IlPathName&),
IlPathList::removeFromPostList(const IlString&).
void IlPathList::insertInPostList ( const IlPathList pathList)

Inserts at the beginning of the list "postList" the IlvPathList pathList.

Parameters
pathListA const reference to an IlPathlist object.
See Also
IlPathList::addInPrevList(const IlPathName&),
IlPathList::addInPrevList(const IlString&),
IlPathList::addInPrevList(const IlPathList&),
IlPathList::addInList(const IlPathName&),
IlPathList::addInList(const IlString&),
IlPathList::addInList(const IlPathList&),
IlPathList::addInPostList(const IlPathName&),
IlPathList::addInPostList(const IlString&),
IlPathList::addInPostList(const IlPathList&),
IlPathList::insertInPrevList(const IlPathName&),
IlPathList::insertInPrevList(const IlString&),
IlPathList::insertInPrevList(const IlPathList&),
IlPathList::insertInList(const IlPathName&),
IlPathList::insertInList(const IlString&),
IlPathList::insertInList(const IlPathList&),
IlPathList::insertInPostList(const IlPathName&),
IlPathList::insertInPostList(const IlString&),
IlPathList::setPrevList(const IlPathName&),
IlPathList::setPrevList(const IlString&),
IlPathList::setPrevList(const IlPathList&),
IlPathList::setList(const IlPathName&),
IlPathList::setList(const IlString&),
IlPathList::setList(const IlPathList&),
IlPathList::setPostList(const IlPathName&),
IlPathList::setPostList(const IlString&),
IlPathList::setPostList(const IlPathList&),
IlPathList::removeFromPrevList(const IlPathName&),
IlPathList::removeFromPrevList(const IlString&),
IlPathList::removeFromList(const IlPathName&),
IlPathList::removeFromList(const IlString&),
IlPathList::removeFromPostList(const IlPathName&),
IlPathList::removeFromPostList(const IlString&).
void IlPathList::insertInPrevList ( const IlPathName path)

Inserts at the beginning of the list "prevList" the IlvPathName path.

Parameters
pathA const reference to an IlPathName object.
See Also
IlPathList::addInPrevList(const IlPathName&),
IlPathList::addInPrevList(const IlString&),
IlPathList::addInPrevList(const IlPathList&),
IlPathList::addInList(const IlPathName&),
IlPathList::addInList(const IlString&),
IlPathList::addInList(const IlPathList&),
IlPathList::addInPostList(const IlPathName&),
IlPathList::addInPostList(const IlString&),
IlPathList::addInPostList(const IlPathList&),
IlPathList::insertInPrevList(const IlString&),
IlPathList::insertInPrevList(const IlPathList&),
IlPathList::insertInList(const IlPathName&),
IlPathList::insertInList(const IlString&),
IlPathList::insertInList(const IlPathList&),
IlPathList::insertInPostList(const IlPathName&),
IlPathList::insertInPostList(const IlString&),
IlPathList::insertInPostList(const IlPathList&),
IlPathList::setPrevList(const IlPathName&),
IlPathList::setPrevList(const IlString&),
IlPathList::setPrevList(const IlPathList&),
IlPathList::setList(const IlPathName&),
IlPathList::setList(const IlString&),
IlPathList::setList(const IlPathList&),
IlPathList::setPostList(const IlPathName&),
IlPathList::setPostList(const IlString&),
IlPathList::setPostList(const IlPathList&),
IlPathList::removeFromPrevList(const IlPathName&),
IlPathList::removeFromPrevList(const IlString&),
IlPathList::removeFromList(const IlPathName&),
IlPathList::removeFromList(const IlString&),
IlPathList::removeFromPostList(const IlPathName&),
IlPathList::removeFromPostList(const IlString&).
void IlPathList::insertInPrevList ( const IlString string)

Inserts at the beginning of the list "prevList" the IlvString path.

This string defines a list of path names separated by a : on Unix and a ; on Windows.

Parameters
pathA const reference to an IlString object.
See Also
IlPathList::addInPrevList(const IlPathName&),
IlPathList::addInPrevList(const IlString&),
IlPathList::addInPrevList(const IlPathList&),
IlPathList::addInList(const IlPathName&),
IlPathList::addInList(const IlString&),
IlPathList::addInList(const IlPathList&),
IlPathList::addInPostList(const IlPathName&),
IlPathList::addInPostList(const IlString&),
IlPathList::addInPostList(const IlPathList&),
IlPathList::insertInPrevList(const IlPathName&),
IlPathList::insertInPrevList(const IlPathList&),
IlPathList::insertInList(const IlPathName&),
IlPathList::insertInList(const IlString&),
IlPathList::insertInList(const IlPathList&),
IlPathList::insertInPostList(const IlPathName&),
IlPathList::insertInPostList(const IlString&),
IlPathList::insertInPostList(const IlPathList&),
IlPathList::setPrevList(const IlPathName&),
IlPathList::setPrevList(const IlString&),
IlPathList::setPrevList(const IlPathList&),
IlPathList::setList(const IlPathName&),
IlPathList::setList(const IlString&),
IlPathList::setList(const IlPathList&),
IlPathList::setPostList(const IlPathName&),
IlPathList::setPostList(const IlString&),
IlPathList::setPostList(const IlPathList&),
IlPathList::removeFromPrevList(const IlPathName&),
IlPathList::removeFromPrevList(const IlString&),
IlPathList::removeFromList(const IlPathName&),
IlPathList::removeFromList(const IlString&),
IlPathList::removeFromPostList(const IlPathName&),
IlPathList::removeFromPostList(const IlString&).
void IlPathList::insertInPrevList ( const IlPathList pathList)

Inserts at the beginning of the list "prevList" the IlvPathList pathList.

Parameters
pathListA const reference to an IlPathlist object.
See Also
IlPathList::addInPrevList(const IlPathName&),
IlPathList::addInPrevList(const IlString&),
IlPathList::addInPrevList(const IlPathList&),
IlPathList::addInList(const IlPathName&),
IlPathList::addInList(const IlString&),
IlPathList::addInList(const IlPathList&),
IlPathList::addInPostList(const IlPathName&),
IlPathList::addInPostList(const IlString&),
IlPathList::addInPostList(const IlPathList&),
IlPathList::insertInPrevList(const IlPathName&),
IlPathList::insertInPrevList(const IlString&),
IlPathList::insertInList(const IlPathName&),
IlPathList::insertInList(const IlString&),
IlPathList::insertInList(const IlPathList&),
IlPathList::insertInPostList(const IlPathName&),
IlPathList::insertInPostList(const IlString&),
IlPathList::insertInPostList(const IlPathList&),
IlPathList::setPrevList(const IlPathName&),
IlPathList::setPrevList(const IlString&),
IlPathList::setPrevList(const IlPathList&),
IlPathList::setList(const IlPathName&),
IlPathList::setList(const IlString&),
IlPathList::setList(const IlPathList&),
IlPathList::setPostList(const IlPathName&),
IlPathList::setPostList(const IlString&),
IlPathList::setPostList(const IlPathList&),
IlPathList::removeFromPrevList(const IlPathName&),
IlPathList::removeFromPrevList(const IlString&),
IlPathList::removeFromList(const IlPathName&),
IlPathList::removeFromList(const IlString&),
IlPathList::removeFromPostList(const IlPathName&),
IlPathList::removeFromPostList(const IlString&).
void IlPathList::removeFromList ( const IlPathName path)

Removes from the list "list" the IlvPathName path.

Parameters
pathA const reference to an IlPathName object.
See Also
IlPathList::addInPrevList(const IlPathName&),
IlPathList::addInPrevList(const IlString&),
IlPathList::addInPrevList(const IlPathList&),
IlPathList::addInList(const IlPathName&),
IlPathList::addInList(const IlString&),
IlPathList::addInList(const IlPathList&),
IlPathList::addInPostList(const IlPathName&),
IlPathList::addInPostList(const IlString&),
IlPathList::addInPostList(const IlPathList&),
IlPathList::insertInPrevList(const IlPathName&),
IlPathList::insertInPrevList(const IlString&),
IlPathList::insertInPrevList(const IlPathList&),
IlPathList::insertInList(const IlPathName&),
IlPathList::insertInList(const IlString&),
IlPathList::insertInList(const IlPathList&),
IlPathList::insertInPostList(const IlPathName&),
IlPathList::insertInPostList(const IlString&),
IlPathList::insertInPostList(const IlPathList&),
IlPathList::setPrevList(const IlPathName&),
IlPathList::setPrevList(const IlString&),
IlPathList::setPrevList(const IlPathList&),
IlPathList::setList(const IlPathName&),
IlPathList::setList(const IlString&),
IlPathList::setList(const IlPathList&),
IlPathList::setPostList(const IlPathName&),
IlPathList::setPostList(const IlString&),
IlPathList::setPostList(const IlPathList&),
IlPathList::removeFromPrevList(const IlPathName&),
IlPathList::removeFromPrevList(const IlString&),
IlPathList::removeFromList(const IlString&),
IlPathList::removeFromPostList(const IlPathName&),
IlPathList::removeFromPostList(const IlString&).
void IlPathList::removeFromList ( const IlString string)

Removes from the list "list" the IlvString path.

This string defines a list of path names separated by a : on Unix and a ; on Windows.

Parameters
pathA const reference to an IlString object.
See Also
IlPathList::addInPrevList(const IlPathName&),
IlPathList::addInPrevList(const IlString&),
IlPathList::addInPrevList(const IlPathList&),
IlPathList::addInList(const IlPathName&),
IlPathList::addInList(const IlString&),
IlPathList::addInList(const IlPathList&),
IlPathList::addInPostList(const IlPathName&),
IlPathList::addInPostList(const IlString&),
IlPathList::addInPostList(const IlPathList&),
IlPathList::insertInPrevList(const IlPathName&),
IlPathList::insertInPrevList(const IlString&),
IlPathList::insertInPrevList(const IlPathList&),
IlPathList::insertInList(const IlPathName&),
IlPathList::insertInList(const IlString&),
IlPathList::insertInList(const IlPathList&),
IlPathList::insertInPostList(const IlPathName&),
IlPathList::insertInPostList(const IlString&),
IlPathList::insertInPostList(const IlPathList&),
IlPathList::setPrevList(const IlPathName&),
IlPathList::setPrevList(const IlString&),
IlPathList::setPrevList(const IlPathList&),
IlPathList::setList(const IlPathName&),
IlPathList::setList(const IlString&),
IlPathList::setList(const IlPathList&),
IlPathList::setPostList(const IlPathName&),
IlPathList::setPostList(const IlString&),
IlPathList::setPostList(const IlPathList&),
IlPathList::removeFromPrevList(const IlPathName&),
IlPathList::removeFromPrevList(const IlString&),
IlPathList::removeFromList(const IlPathName&),
IlPathList::removeFromPostList(const IlPathName&),
IlPathList::removeFromPostList(const IlString&).
void IlPathList::removeFromPostList ( const IlPathName path)

Removes from the list "postList" the IlvPathName path.

Parameters
pathA const reference to an IlPathName object.
See Also
IlPathList::addInPrevList(const IlPathName&),
IlPathList::addInPrevList(const IlString&),
IlPathList::addInPrevList(const IlPathList&),
IlPathList::addInList(const IlPathName&),
IlPathList::addInList(const IlString&),
IlPathList::addInList(const IlPathList&),
IlPathList::addInPostList(const IlPathName&),
IlPathList::addInPostList(const IlString&),
IlPathList::addInPostList(const IlPathList&),
IlPathList::insertInPrevList(const IlPathName&),
IlPathList::insertInPrevList(const IlString&),
IlPathList::insertInPrevList(const IlPathList&),
IlPathList::insertInList(const IlPathName&),
IlPathList::insertInList(const IlString&),
IlPathList::insertInList(const IlPathList&),
IlPathList::insertInPostList(const IlPathName&),
IlPathList::insertInPostList(const IlString&),
IlPathList::insertInPostList(const IlPathList&),
IlPathList::setPrevList(const IlPathName&),
IlPathList::setPrevList(const IlString&),
IlPathList::setPrevList(const IlPathList&),
IlPathList::setList(const IlPathName&),
IlPathList::setList(const IlString&),
IlPathList::setList(const IlPathList&),
IlPathList::setPostList(const IlPathName&),
IlPathList::setPostList(const IlString&),
IlPathList::setPostList(const IlPathList&),
IlPathList::removeFromPrevList(const IlPathName&),
IlPathList::removeFromPrevList(const IlString&),
IlPathList::removeFromList(const IlPathName&),
IlPathList::removeFromList(const IlString&),
IlPathList::removeFromPostList(const IlString&).
void IlPathList::removeFromPostList ( const IlString string)

Removes from the list "postList" the IlvString path.

This string defines a list of path names separated by a : on Unix and a ; on Windows.

Parameters
pathA const reference to an IlString object.
See Also
IlPathList::addInPrevList(const IlPathName&),
IlPathList::addInPrevList(const IlString&),
IlPathList::addInPrevList(const IlPathList&),
IlPathList::addInList(const IlPathName&),
IlPathList::addInList(const IlString&),
IlPathList::addInList(const IlPathList&),
IlPathList::addInPostList(const IlPathName&),
IlPathList::addInPostList(const IlString&),
IlPathList::addInPostList(const IlPathList&),
IlPathList::insertInPrevList(const IlPathName&),
IlPathList::insertInPrevList(const IlString&),
IlPathList::insertInPrevList(const IlPathList&),
IlPathList::insertInList(const IlPathName&),
IlPathList::insertInList(const IlString&),
IlPathList::insertInList(const IlPathList&),
IlPathList::insertInPostList(const IlPathName&),
IlPathList::insertInPostList(const IlString&),
IlPathList::insertInPostList(const IlPathList&),
IlPathList::setPrevList(const IlPathName&),
IlPathList::setPrevList(const IlString&),
IlPathList::setPrevList(const IlPathList&),
IlPathList::setList(const IlPathName&),
IlPathList::setList(const IlString&),
IlPathList::setList(const IlPathList&),
IlPathList::setPostList(const IlPathName&),
IlPathList::setPostList(const IlString&),
IlPathList::setPostList(const IlPathList&),
IlPathList::removeFromPrevList(const IlPathName&),
IlPathList::removeFromPrevList(const IlString&),
IlPathList::removeFromList(const IlPathName&),
IlPathList::removeFromList(const IlString&),
IlPathList::removeFromPostList(const IlPathName&).
void IlPathList::removeFromPrevList ( const IlPathName path)

Removes from the list "prevList" the IlvPathName path.

Parameters
pathA const reference to an IlPathName object.
See Also
IlPathList::addInPrevList(const IlPathName&),
IlPathList::addInPrevList(const IlString&),
IlPathList::addInPrevList(const IlPathList&),
IlPathList::addInList(const IlPathName&),
IlPathList::addInList(const IlString&),
IlPathList::addInList(const IlPathList&),
IlPathList::addInPostList(const IlPathName&),
IlPathList::addInPostList(const IlString&),
IlPathList::addInPostList(const IlPathList&),
IlPathList::insertInPrevList(const IlPathName&),
IlPathList::insertInPrevList(const IlString&),
IlPathList::insertInPrevList(const IlPathList&),
IlPathList::insertInList(const IlPathName&),
IlPathList::insertInList(const IlString&),
IlPathList::insertInList(const IlPathList&),
IlPathList::insertInPostList(const IlPathName&),
IlPathList::insertInPostList(const IlString&),
IlPathList::insertInPostList(const IlPathList&),
IlPathList::setPrevList(const IlPathName&),
IlPathList::setPrevList(const IlString&),
IlPathList::setPrevList(const IlPathList&),
IlPathList::setList(const IlPathName&),
IlPathList::setList(const IlString&),
IlPathList::setList(const IlPathList&),
IlPathList::setPostList(const IlPathName&),
IlPathList::setPostList(const IlString&),
IlPathList::setPostList(const IlPathList&),
IlPathList::removeFromPrevList(const IlString&),
IlPathList::removeFromList(const IlPathName&),
IlPathList::removeFromList(const IlString&),
IlPathList::removeFromPostList(const IlPathName&),
IlPathList::removeFromPostList(const IlString&).
void IlPathList::removeFromPrevList ( const IlString string)

Removes from the list "prevList" the IlvString path.

This string defines a list of path names separated by a : on Unix and a ; on Windows.

Parameters
pathA const reference to an IlString object.
See Also
IlPathList::addInPrevList(const IlPathName&),
IlPathList::addInPrevList(const IlString&),
IlPathList::addInPrevList(const IlPathList&),
IlPathList::addInList(const IlPathName&),
IlPathList::addInList(const IlString&),
IlPathList::addInList(const IlPathList&),
IlPathList::addInPostList(const IlPathName&),
IlPathList::addInPostList(const IlString&),
IlPathList::addInPostList(const IlPathList&),
IlPathList::insertInPrevList(const IlPathName&),
IlPathList::insertInPrevList(const IlString&),
IlPathList::insertInPrevList(const IlPathList&),
IlPathList::insertInList(const IlPathName&),
IlPathList::insertInList(const IlString&),
IlPathList::insertInList(const IlPathList&),
IlPathList::insertInPostList(const IlPathName&),
IlPathList::insertInPostList(const IlString&),
IlPathList::insertInPostList(const IlPathList&),
IlPathList::setPrevList(const IlPathName&),
IlPathList::setPrevList(const IlString&),
IlPathList::setPrevList(const IlPathList&),
IlPathList::setList(const IlPathName&),
IlPathList::setList(const IlString&),
IlPathList::setList(const IlPathList&),
IlPathList::setPostList(const IlPathName&),
IlPathList::setPostList(const IlString&),
IlPathList::setPostList(const IlPathList&),
IlPathList::removeFromPrevList(const IlPathName&),
IlPathList::removeFromList(const IlPathName&),
IlPathList::removeFromList(const IlString&),
IlPathList::removeFromPostList(const IlPathName&),
IlPathList::removeFromPostList(const IlString&).
void IlPathList::setList ( const IlPathName path)

Replaces the list "list" with the IlvPathName path.

Parameters
pathA const reference to an IlPathName object.
See Also
IlPathList::addInPrevList(const IlPathName&),
IlPathList::addInPrevList(const IlString&),
IlPathList::addInPrevList(const IlPathList&),
IlPathList::addInList(const IlPathName&),
IlPathList::addInList(const IlString&),
IlPathList::addInList(const IlPathList&),
IlPathList::addInPostList(const IlPathName&),
IlPathList::addInPostList(const IlString&),
IlPathList::addInPostList(const IlPathList&),
IlPathList::insertInPrevList(const IlPathName&),
IlPathList::insertInPrevList(const IlString&),
IlPathList::insertInPrevList(const IlPathList&),
IlPathList::insertInList(const IlPathName&),
IlPathList::insertInList(const IlString&),
IlPathList::insertInList(const IlPathList&),
IlPathList::insertInPostList(const IlPathName&),
IlPathList::insertInPostList(const IlString&),
IlPathList::insertInPostList(const IlPathList&),
IlPathList::setPrevList(const IlPathName&),
IlPathList::setPrevList(const IlString&),
IlPathList::setPrevList(const IlPathList&),
IlPathList::setList(const IlString&),
IlPathList::setList(const IlPathList&),
IlPathList::setPostList(const IlPathName&),
IlPathList::setPostList(const IlString&),
IlPathList::setPostList(const IlPathList&),
IlPathList::removeFromPrevList(const IlPathName&),
IlPathList::removeFromPrevList(const IlString&),
IlPathList::removeFromList(const IlPathName&),
IlPathList::removeFromList(const IlString&),
IlPathList::removeFromPostList(const IlPathName&),
IlPathList::removeFromPostList(const IlString&).
void IlPathList::setList ( const IlString string)

Replaces the list "list" with the IlvString path.

This string defines a list of path names separated by a : on Unix and a ; on Windows.

Parameters
pathA const reference to an IlString object.
See Also
IlPathList::addInPrevList(const IlPathName&),
IlPathList::addInPrevList(const IlString&),
IlPathList::addInPrevList(const IlPathList&),
IlPathList::addInList(const IlPathName&),
IlPathList::addInList(const IlString&),
IlPathList::addInList(const IlPathList&),
IlPathList::addInPostList(const IlPathName&),
IlPathList::addInPostList(const IlString&),
IlPathList::addInPostList(const IlPathList&),
IlPathList::insertInPrevList(const IlPathName&),
IlPathList::insertInPrevList(const IlString&),
IlPathList::insertInPrevList(const IlPathList&),
IlPathList::insertInList(const IlPathName&),
IlPathList::insertInList(const IlString&),
IlPathList::insertInList(const IlPathList&),
IlPathList::insertInPostList(const IlPathName&),
IlPathList::insertInPostList(const IlString&),
IlPathList::insertInPostList(const IlPathList&),
IlPathList::setPrevList(const IlPathName&),
IlPathList::setPrevList(const IlString&),
IlPathList::setPrevList(const IlPathList&),
IlPathList::setList(const IlPathName&),
IlPathList::setList(const IlPathList&),
IlPathList::setPostList(const IlPathName&),
IlPathList::setPostList(const IlString&),
IlPathList::setPostList(const IlPathList&),
IlPathList::removeFromPrevList(const IlPathName&),
IlPathList::removeFromPrevList(const IlString&),
IlPathList::removeFromList(const IlPathName&),
IlPathList::removeFromList(const IlString&),
IlPathList::removeFromPostList(const IlPathName&),
IlPathList::removeFromPostList(const IlString&).
void IlPathList::setList ( const IlPathList pathList)

Replaces the list "list" with the IlPathList pathList.

Parameters
pathListA const reference to an IlPathList object.
See Also
IlPathList::addInPrevList(const IlPathName&),
IlPathList::addInPrevList(const IlString&),
IlPathList::addInPrevList(const IlPathList&),
IlPathList::addInList(const IlPathName&),
IlPathList::addInList(const IlString&),
IlPathList::addInList(const IlPathList&),
IlPathList::addInPostList(const IlPathName&),
IlPathList::addInPostList(const IlString&),
IlPathList::addInPostList(const IlPathList&),
IlPathList::insertInPrevList(const IlPathName&),
IlPathList::insertInPrevList(const IlString&),
IlPathList::insertInPrevList(const IlPathList&),
IlPathList::insertInList(const IlPathName&),
IlPathList::insertInList(const IlString&),
IlPathList::insertInList(const IlPathList&),
IlPathList::insertInPostList(const IlPathName&),
IlPathList::insertInPostList(const IlString&),
IlPathList::insertInPostList(const IlPathList&),
IlPathList::setPrevList(const IlPathName&),
IlPathList::setPrevList(const IlString&),
IlPathList::setPrevList(const IlPathList&),
IlPathList::setList(const IlPathName&),
IlPathList::setList(const IlString&),
IlPathList::setPostList(const IlPathName&),
IlPathList::setPostList(const IlString&),
IlPathList::setPostList(const IlPathList&),
IlPathList::removeFromPrevList(const IlPathName&),
IlPathList::removeFromPrevList(const IlString&),
IlPathList::removeFromList(const IlPathName&),
IlPathList::removeFromList(const IlString&),
IlPathList::removeFromPostList(const IlPathName&),
IlPathList::removeFromPostList(const IlString&).
void IlPathList::setPostList ( const IlPathName path)

Replaces the list "postList" with the IlvPathName path.

Parameters
pathA const reference to an IlPathName object.
See Also
IlPathList::addInPrevList(const IlPathName&),
IlPathList::addInPrevList(const IlString&),
IlPathList::addInPrevList(const IlPathList&),
IlPathList::addInList(const IlPathName&),
IlPathList::addInList(const IlString&),
IlPathList::addInList(const IlPathList&),
IlPathList::addInPostList(const IlPathName&),
IlPathList::addInPostList(const IlString&),
IlPathList::addInPostList(const IlPathList&),
IlPathList::insertInPrevList(const IlPathName&),
IlPathList::insertInPrevList(const IlString&),
IlPathList::insertInPrevList(const IlPathList&),
IlPathList::insertInList(const IlPathName&),
IlPathList::insertInList(const IlString&),
IlPathList::insertInList(const IlPathList&),
IlPathList::insertInPostList(const IlPathName&),
IlPathList::insertInPostList(const IlString&),
IlPathList::insertInPostList(const IlPathList&),
IlPathList::setPrevList(const IlPathName&),
IlPathList::setPrevList(const IlString&),
IlPathList::setPrevList(const IlPathList&),
IlPathList::setList(const IlPathName&),
IlPathList::setList(const IlString&),
IlPathList::setList(const IlPathList&),
IlPathList::setPostList(const IlString&),
IlPathList::setPostList(const IlPathList&),
IlPathList::removeFromPrevList(const IlPathName&),
IlPathList::removeFromPrevList(const IlString&),
IlPathList::removeFromList(const IlPathName&),
IlPathList::removeFromList(const IlString&),
IlPathList::removeFromPostList(const IlPathName&),
IlPathList::removeFromPostList(const IlString&).
void IlPathList::setPostList ( const IlString string)

Replaces the list "postList" with the IlvString path.

This string defines a list of path names separated by a : on Unix and a ; on Windows.

Parameters
pathA const reference to an IlString object.
See Also
IlPathList::addInPrevList(const IlPathName&),
IlPathList::addInPrevList(const IlString&),
IlPathList::addInPrevList(const IlPathList&),
IlPathList::addInList(const IlPathName&),
IlPathList::addInList(const IlString&),
IlPathList::addInList(const IlPathList&),
IlPathList::addInPostList(const IlPathName&),
IlPathList::addInPostList(const IlString&),
IlPathList::addInPostList(const IlPathList&),
IlPathList::insertInPrevList(const IlPathName&),
IlPathList::insertInPrevList(const IlString&),
IlPathList::insertInPrevList(const IlPathList&),
IlPathList::insertInList(const IlPathName&),
IlPathList::insertInList(const IlString&),
IlPathList::insertInList(const IlPathList&),
IlPathList::insertInPostList(const IlPathName&),
IlPathList::insertInPostList(const IlString&),
IlPathList::insertInPostList(const IlPathList&),
IlPathList::setPrevList(const IlPathName&),
IlPathList::setPrevList(const IlString&),
IlPathList::setPrevList(const IlPathList&),
IlPathList::setList(const IlPathName&),
IlPathList::setList(const IlString&),
IlPathList::setList(const IlPathList&),
IlPathList::setPostList(const IlPathName&),
IlPathList::setPostList(const IlPathList&),
IlPathList::removeFromPrevList(const IlPathName&),
IlPathList::removeFromPrevList(const IlString&),
IlPathList::removeFromList(const IlPathName&),
IlPathList::removeFromList(const IlString&),
IlPathList::removeFromPostList(const IlPathName&),
IlPathList::removeFromPostList(const IlString&).
void IlPathList::setPostList ( const IlPathList pathList)

Replaces the list "postList" with the IlPathList pathList.

Parameters
pathListA const reference to an IlPathList object.
See Also
IlPathList::addInPrevList(const IlPathName&),
IlPathList::addInPrevList(const IlString&),
IlPathList::addInPrevList(const IlPathList&),
IlPathList::addInList(const IlPathName&),
IlPathList::addInList(const IlString&),
IlPathList::addInList(const IlPathList&),
IlPathList::addInPostList(const IlPathName&),
IlPathList::addInPostList(const IlString&),
IlPathList::addInPostList(const IlPathList&),
IlPathList::insertInPrevList(const IlPathName&),
IlPathList::insertInPrevList(const IlString&),
IlPathList::insertInPrevList(const IlPathList&),
IlPathList::insertInList(const IlPathName&),
IlPathList::insertInList(const IlString&),
IlPathList::insertInList(const IlPathList&),
IlPathList::insertInPostList(const IlPathName&),
IlPathList::insertInPostList(const IlString&),
IlPathList::insertInPostList(const IlPathList&),
IlPathList::setPrevList(const IlPathName&),
IlPathList::setPrevList(const IlString&),
IlPathList::setPrevList(const IlPathList&),
IlPathList::setList(const IlPathName&),
IlPathList::setList(const IlString&),
IlPathList::setList(const IlPathList&),
IlPathList::setPostList(const IlPathName&),
IlPathList::setPostList(const IlString&),
IlPathList::removeFromPrevList(const IlPathName&),
IlPathList::removeFromPrevList(const IlString&),
IlPathList::removeFromList(const IlPathName&),
IlPathList::removeFromList(const IlString&),
IlPathList::removeFromPostList(const IlPathName&),
IlPathList::removeFromPostList(const IlString&).
void IlPathList::setPrevList ( const IlPathName path)

Replaces the list "prevList" with the IlvPathName path.

Parameters
pathA const reference to an IlPathName object.
See Also
IlPathList::addInPrevList(const IlPathName&),
IlPathList::addInPrevList(const IlString&),
IlPathList::addInPrevList(const IlPathList&),
IlPathList::addInList(const IlPathName&),
IlPathList::addInList(const IlString&),
IlPathList::addInList(const IlPathList&),
IlPathList::addInPostList(const IlPathName&),
IlPathList::addInPostList(const IlString&),
IlPathList::addInPostList(const IlPathList&),
IlPathList::insertInPrevList(const IlPathName&),
IlPathList::insertInPrevList(const IlString&),
IlPathList::insertInPrevList(const IlPathList&),
IlPathList::insertInList(const IlPathName&),
IlPathList::insertInList(const IlString&),
IlPathList::insertInList(const IlPathList&),
IlPathList::insertInPostList(const IlPathName&),
IlPathList::insertInPostList(const IlString&),
IlPathList::insertInPostList(const IlPathList&),
IlPathList::setPrevList(const IlString&),
IlPathList::setPrevList(const IlPathList&),
IlPathList::setList(const IlPathName&),
IlPathList::setList(const IlString&),
IlPathList::setList(const IlPathList&),
IlPathList::setPostList(const IlPathName&),
IlPathList::setPostList(const IlString&),
IlPathList::setPostList(const IlPathList&),
IlPathList::removeFromPrevList(const IlPathName&),
IlPathList::removeFromPrevList(const IlString&),
IlPathList::removeFromList(const IlPathName&),
IlPathList::removeFromList(const IlString&),
IlPathList::removeFromPostList(const IlPathName&),
IlPathList::removeFromPostList(const IlString&).
void IlPathList::setPrevList ( const IlString string)

Replaces the list "prevList" with the IlvString path.

This string defines a list of path names separated by a : on Unix and a ; on Windows.

Parameters
pathA const reference to an IlString object.
See Also
IlPathList::addInPrevList(const IlPathName&),
IlPathList::addInPrevList(const IlString&),
IlPathList::addInPrevList(const IlPathList&),
IlPathList::addInList(const IlPathName&),
IlPathList::addInList(const IlString&),
IlPathList::addInList(const IlPathList&),
IlPathList::addInPostList(const IlPathName&),
IlPathList::addInPostList(const IlString&),
IlPathList::addInPostList(const IlPathList&),
IlPathList::insertInPrevList(const IlPathName&),
IlPathList::insertInPrevList(const IlString&),
IlPathList::insertInPrevList(const IlPathList&),
IlPathList::insertInList(const IlPathName&),
IlPathList::insertInList(const IlString&),
IlPathList::insertInList(const IlPathList&),
IlPathList::insertInPostList(const IlPathName&),
IlPathList::insertInPostList(const IlString&),
IlPathList::insertInPostList(const IlPathList&),
IlPathList::setPrevList(const IlPathName&),
IlPathList::setPrevList(const IlPathList&),
IlPathList::setList(const IlPathName&),
IlPathList::setList(const IlString&),
IlPathList::setList(const IlPathList&),
IlPathList::setPostList(const IlPathName&),
IlPathList::setPostList(const IlString&),
IlPathList::setPostList(const IlPathList&),
IlPathList::removeFromPrevList(const IlPathName&),
IlPathList::removeFromPrevList(const IlString&),
IlPathList::removeFromList(const IlPathName&),
IlPathList::removeFromList(const IlString&),
IlPathList::removeFromPostList(const IlPathName&),
IlPathList::removeFromPostList(const IlString&).
void IlPathList::setPrevList ( const IlPathList pathList)

Replaces the list "prevList" with the IlPathList pathList.

Parameters
pathListA const reference to an IlPathList object.
See Also
IlPathList::addInPrevList(const IlPathName&),
IlPathList::addInPrevList(const IlString&),
IlPathList::addInPrevList(const IlPathList&),
IlPathList::addInList(const IlPathName&),
IlPathList::addInList(const IlString&),
IlPathList::addInList(const IlPathList&),
IlPathList::addInPostList(const IlPathName&),
IlPathList::addInPostList(const IlString&),
IlPathList::addInPostList(const IlPathList&),
IlPathList::insertInPrevList(const IlPathName&),
IlPathList::insertInPrevList(const IlString&),
IlPathList::insertInPrevList(const IlPathList&),
IlPathList::insertInList(const IlPathName&),
IlPathList::insertInList(const IlString&),
IlPathList::insertInList(const IlPathList&),
IlPathList::insertInPostList(const IlPathName&),
IlPathList::insertInPostList(const IlString&),
IlPathList::insertInPostList(const IlPathList&),
IlPathList::setPrevList(const IlPathName&),
IlPathList::setPrevList(const IlString&),
IlPathList::setList(const IlPathName&),
IlPathList::setList(const IlString&),
IlPathList::setList(const IlPathList&),
IlPathList::setPostList(const IlPathName&),
IlPathList::setPostList(const IlString&),
IlPathList::setPostList(const IlPathList&),
IlPathList::removeFromPrevList(const IlPathName&),
IlPathList::removeFromPrevList(const IlString&),
IlPathList::removeFromList(const IlPathName&),
IlPathList::removeFromList(const IlString&),
IlPathList::removeFromPostList(const IlPathName&),
IlPathList::removeFromPostList(const IlString&).

© Copyright 2014, Rogue Wave Software, Inc. All Rights Reserved.
Rogue Wave is a registered trademark of Rogue Wave Software, Inc. in the United States and other countries. All other trademarks are the property of their respective owners.