|
virtual | ~ossimPointCloudHandlerRegistry () |
|
virtual ossimPointCloudHandler * | open (const ossimFilename &fileName) const |
|
virtual ossimPointCloudHandler * | open (const ossimKeywordlist &kwl, const char *prefix=0) const |
|
virtual ossimRefPtr< ossimPointCloudHandler > | open (std::istream *str, std::streamoff restartPosition, bool youOwnIt) const |
|
virtual ossimObject * | createObject (const ossimString &typeName) const |
|
virtual ossimObject * | createObject (const ossimKeywordlist &kwl, const char *prefix=0) const |
|
virtual void | getTypeNameList (std::vector< ossimString > &typeList) 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 |
|
| ossimFactoryListInterface () |
|
void | addFactory (ossimPointCloudHandlerFactory *factory) |
| This is for backward compatability and calls registerFactory for simple adds. More...
|
|
bool | isFactoryRegistered (ossimPointCloudHandlerFactory *factory) const |
| Public access method to determine if a factory is already registered to this list. More...
|
|
void | registerFactory (ossimPointCloudHandlerFactory *factory, bool pushToFrontFlag=false) |
| Will register a factory to the factory list. More...
|
|
void | unregisterFactory (ossimPointCloudHandlerFactory *factory) |
| Will remove the factory from the registry. More...
|
|
void | unregisterFactory (const ossimString &factoryTypeName) |
| Will remove the factory from the registry by name. More...
|
|
void | unregisterAllFactories () |
| Will remove all factories from the registry. More...
|
|
void | registerFactoryToFront (ossimPointCloudHandlerFactory *factory) |
| Inserts the factory to the front of the list. More...
|
|
void | registerFactoryBefore (ossimPointCloudHandlerFactory *factory, ossimPointCloudHandlerFactory *beforeThisFactory) |
| Will insert the factory before the beforeThisFactory. More...
|
|
void | getAllTypeNamesFromRegistry (std::vector< ossimString > &typeList) const |
| Will add all object types the factories can allocate. More...
|
|
ossimObject * | createObjectFromRegistry (const ossimString &typeName) const |
| This is the base object return for all objects in the system. More...
|
|
ossimObject * | createObjectFromRegistry (const ossimKeywordlist &kwl, const char *prefix=0) const |
| This is the base object return for all objects in the system. More...
|
|
ossimPointCloudHandler * | createNativeObjectFromRegistry (const ossimString &typeName) const |
| This is a helper method that calls the createObject and makes sure that the returned object is of the NativeType base type this registry supports. More...
|
|
ossimPointCloudHandler * | createNativeObjectFromRegistry (const ossimKeywordlist &kwl, const char *prefix=0) const |
| This is a helper method that calls the createObject and makes sure that the returned object is of the NativeType base type this registry supports. More...
|
|