File Information
Library: Foundation
Package: SharedLibrary
Header: Poco/Manifest.h
Description
Inheritance
Direct Base Classes: ManifestBase
All Base Classes: ManifestBase
Member Summary
Member Functions: begin, className, clear, empty, end, find, insert, size
Inherited Functions: className
Nested Classes
class Iterator
The Manifest's very own iterator class.
Types
Meta
typedef AbstractMetaObject < B > Meta;
MetaMap
typedef std::map < std::string, const Meta * > MetaMap;
Constructors
Manifest
Manifest();
Creates an empty Manifest.
Destructor
~Manifest
virtual ~Manifest();
Destroys the Manifest.
Member Functions
begin
Iterator begin() const;
className
const char * className() const;
See also: Poco::ManifestBase::className()
clear
void clear();
Removes all MetaObjects from the manifest.
empty
bool empty() const;
Returns true iff the Manifest does not contain any MetaObjects.
end
Iterator end() const;
find
Iterator find(
const std::string & className
) const;
Returns an iterator pointing to the MetaObject for the given class. If the MetaObject cannot be found, the iterator points to end().
insert
bool insert(
const Meta * pMeta
);
Inserts a MetaObject. Returns true if insertion was successful, false if a class with the same name already exists.
size
int size() const;
Returns the number of MetaObjects in the Manifest.