OSSIM - Open Source Software Image Map
Version 1.9.0 (20180803)
|
The base class for factory overview builder factories. More...
#include <ossimOverviewBuilderFactoryBase.h>
Public Member Functions | |
ossimOverviewBuilderFactoryBase () | |
default constructor hidden from use More... | |
virtual | ~ossimOverviewBuilderFactoryBase () |
virtual destructor More... | |
virtual ossimOverviewBuilderBase * | createBuilder (const ossimString &typeName) const =0 |
Creates a builder from a string. More... | |
virtual void | getTypeNameList (std::vector< ossimString > &typeList) const =0 |
Method to populate a list of supported types for the factory. More... | |
virtual ossimObject * | createObject (const ossimString &typeName) const |
virtual ossimObject * | createObject (const ossimKeywordlist &kwl, const char *prefix=0) const |
![]() | |
virtual | ~ossimObjectFactory () |
![]() | |
ossimObject () | |
virtual | ~ossimObject () |
virtual ossimObject * | dup () const |
virtual ossimString | getShortName () const |
virtual ossimString | getLongName () const |
virtual ossimString | getDescription () const |
virtual ossimString | getClassName () const |
virtual RTTItypeid | getType () const |
virtual bool | canCastTo (ossimObject *obj) const |
virtual bool | canCastTo (const RTTItypeid &id) const |
virtual bool | canCastTo (const ossimString &parentClassName) const |
virtual bool | saveState (ossimKeywordlist &kwl, const char *prefix=0) const |
virtual bool | loadState (const ossimKeywordlist &kwl, const char *prefix=0) |
virtual std::ostream & | print (std::ostream &out) const |
Generic print method. More... | |
virtual bool | isEqualTo (const ossimObject &obj, ossimCompareType compareType=OSSIM_COMPARE_FULL) const |
virtual void | accept (ossimVisitor &visitor) |
![]() | |
ossimReferenced () | |
ossimReferenced (const ossimReferenced &) | |
ossimReferenced & | operator= (const ossimReferenced &) |
void | ref () const |
increment the reference count by one, indicating that this object has another pointer which is referencing it. More... | |
void | unref () const |
decrement the reference count by one, indicating that a pointer to this object is referencing it. More... | |
void | unref_nodelete () const |
decrement the reference count by one, indicating that a pointer to this object is referencing it. More... | |
int | referenceCount () const |
Additional Inherited Members | |
![]() | |
virtual | ~ossimReferenced () |
The base class for factory overview builder factories.
Definition at line 26 of file ossimOverviewBuilderFactoryBase.h.
ossimOverviewBuilderFactoryBase::ossimOverviewBuilderFactoryBase | ( | ) |
default constructor hidden from use
Definition at line 42 of file ossimOverviewBuilderFactoryBase.cpp.
|
virtual |
|
pure virtual |
Creates a builder from a string.
This should match a string from the getTypeNameList() method. Pure virtual.
Implemented in ossimKakaduOverviewBuilderFactory, ossimGdalOverviewBuilderFactory, and ossimOverviewBuilderFactory.
Referenced by createObject().
|
virtual |
Creates an object given a type name.
Implements ossimObjectFactory.
Definition at line 16 of file ossimOverviewBuilderFactoryBase.cpp.
References createBuilder().
Referenced by createObject().
|
virtual |
Creates and object given a keyword list.
Implements ossimObjectFactory.
Definition at line 21 of file ossimOverviewBuilderFactoryBase.cpp.
References createObject(), ossimString::empty(), ossimKeywordlist::find(), and ossimObject::loadState().
|
pure virtual |
Method to populate a list of supported types for the factory.
registered to this registry. Pure virtual.
typeList | List of ossimStrings to add to. |
Implements ossimObjectFactory.
Implemented in ossimKakaduOverviewBuilderFactory, ossimGdalOverviewBuilderFactory, and ossimOverviewBuilderFactory.