Poco::ClassLoader

class Iterator

Library: Foundation
Package: SharedLibrary
Header: Poco/ClassLoader.h

Description

The ClassLoader's very own iterator class.

Member Summary

Member Functions: operator !=, operator *, operator ++, operator =, operator ==, operator->

Types

Pair

typedef std::pair < std::string, const Manif * > Pair;

Constructors

Iterator inline

Iterator(
    const typename LibraryMap::const_iterator & it
);

Iterator inline

Iterator(
    const Iterator & it
);

Destructor

~Iterator inline

~Iterator();

Member Functions

operator != inline

inline bool operator != (
    const Iterator & it
) const;

operator * inline

inline const Pair * operator * () const;

operator ++ inline

Iterator & operator ++ ();

operator ++ inline

Iterator operator ++ (
    int
);

operator = inline

Iterator & operator = (
    const Iterator & it
);

operator == inline

inline bool operator == (
    const Iterator & it
) const;

operator-> inline

inline const Pair * operator-> () const;