Library: Foundation
Package: SharedLibrary
Header: Poco/MetaObject.h
A SingletonMetaObject disables the create() method and instead offers an instance() method to access the single instance of its class.
Direct Base Classes: AbstractMetaObject < B >
All Base Classes: AbstractMetaObject < B >
Member Functions: canCreate, create, instance, isAutoDelete
 
 MetaSingleton(
    const char * name
);
 
 ~MetaSingleton();
 
 bool canCreate() const;
 
 B * create() const;
 
 B & instance() const;
 
 bool isAutoDelete(
    B * pObject
) const;