rwlogo
SourcePro C++ 12.0

SourcePro® C++ API Reference Guide



   SourcePro C++
Documentation Home

RWDirectoryIterator< const char * > Struct Template Reference
[File System]

Provides a specialization of the class template for const char*, with no iteration of subdirectories. More...

#include <rw/directory.h>

Inherits RWHandle.

List of all members.

Public Types

typedef const char * value_type

Public Member Functions

 RWDirectoryIterator ()
 RWDirectoryIterator (const char *cs)
 RWDirectoryIterator (const RWDirectoryIterator &it)
 RWDirectoryIterator (RWDirectoryIterator &&it)
RWDirectoryIterator & operator= (const RWDirectoryIterator &)
RWDirectoryIterator & operator= (RWDirectoryIterator &&it)
RWDirectoryIterator & operator++ ()
RWDirectoryIterator operator++ (int)
value_type operator* () const
void swap (RWDirectoryIterator &it)

Friends

bool operator== (const RWDirectoryIterator< const char * > &, const RWDirectoryIterator< const char * > &)
bool operator!= (const RWDirectoryIterator< const char * > &, const RWDirectoryIterator< const char * > &)

Detailed Description

template<>
struct RWDirectoryIterator< const char * >

The Essential Tools library provides two specializations of the class template: this class, RWDirectoryIterator<const char*>, for const char* which acts like a flat iterator , i.e. no iteration of subdirectories; and an RWCString specialization, RWDirectoryIterator<RWCString>, to provide a recursive iteration of subdirectories. Neither follow symbolic links.

Both iterators are refinements of the Input Iterator concept. One limitation is that they are usable only in single-pass algorithms.

The nature of the API for manipulating files and directories requires special attention to synchronization issues. These classes are:

Synopsis

 #include <rw/directory.h>
 RWDirectoryIterator<const char*> it;

Persistence

None


Member Typedef Documentation

typedef const char* RWDirectoryIterator< const char * >::value_type

Typedef for the type on which self is specialized.


Constructor & Destructor Documentation

RWDirectoryIterator< const char * >::RWDirectoryIterator (  ) 

Constructs an iterator that compares equal with any past-the-end iterator.

RWDirectoryIterator< const char * >::RWDirectoryIterator ( const char *  cs  )  [explicit]

Constructs an iterator over the content of the directory name provided by the argument cs.

Exceptions:
RWInternalErr or one of its derived types, thrown if cs is not a directory.
RWDirectoryIterator< const char * >::RWDirectoryIterator ( const RWDirectoryIterator< const char * > &  it  ) 

Constructs an iterator that is a copy of the iterator passed as the argument. Dereferencing each yields identical results, yet they will not compare equal. See the equality comparison operators below.

RWDirectoryIterator< const char * >::RWDirectoryIterator ( RWDirectoryIterator< const char * > &&  it  ) 

Move constructor. The constructed iterator takes ownership of the data owned by it.

Condition:
This method is only available on platforms with rvalue reference support.

Member Function Documentation

value_type RWDirectoryIterator< const char * >::operator* (  )  const

Dereferencing operator. Returns the file name or 0 if the iterator is a past-the-end iterator.

RWDirectoryIterator RWDirectoryIterator< const char * >::operator++ ( int   ) 

Postfix increment operator. Returns an iterator that points to the entry previous to the increment operation.

RWDirectoryIterator& RWDirectoryIterator< const char * >::operator++ (  ) 

Prefix increment operator. Returns a reference to this object.

RWDirectoryIterator& RWDirectoryIterator< const char * >::operator= ( RWDirectoryIterator< const char * > &&  it  ) 

Move assignment. Self takes ownership of the data owned by it.

Condition:
This method is only available on platforms with rvalue reference support.
RWDirectoryIterator& RWDirectoryIterator< const char * >::operator= ( const RWDirectoryIterator< const char * > &   ) 

Assignment operator. Performs the assignment of the value of the argument. Note that the objects will not compare equal unless they are both past-the-end iterators.

void RWDirectoryIterator< const char * >::swap ( RWDirectoryIterator< const char * > &  it  ) 

Swaps the data owned by self with the data owned by it.


Friends And Related Function Documentation

bool operator!= ( const RWDirectoryIterator< const char * > &  ,
const RWDirectoryIterator< const char * > &   
) [friend]

Inequality operator. Equivalent to logical negation of corresponding equality operator.

bool operator== ( const RWDirectoryIterator< const char * > &  ,
const RWDirectoryIterator< const char * > &   
) [friend]

Equality operator. Tests equality between the two RWDirectoryIterator<const char*> objects passed as parameters. Only past-the-end iterators compare equal.

 All Classes Functions Variables Typedefs Enumerations Enumerator Friends

© Copyright Rogue Wave Software, Inc. All Rights Reserved.
Rogue Wave and SourcePro are registered trademarks of Rogue Wave Software, Inc. in the United States and other countries. All other trademarks are the property of their respective owners.
Contact Rogue Wave about documentation or support issues.