/usr/include/ossim/imaging/ossimImageGeometryFactoryBase.h is in libossim-dev 2.2.2-1.
This file is owned by root:root, with mode 0o644.
The actual contents of the file can be viewed below.
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 | //**************************************************************************************************
//
// License: MIT
//
// See LICENSE.txt file in the top level directory for more details.
//
// Description: Class declaration of ossimImageGeometryFactoryBase. See .h file for class documentation.
//
//**************************************************************************************************
// $Id$
#ifndef ossimImageGeometryFactoryBase_HEADER
#define ossimImageGeometryFactoryBase_HEADER
#include <ossim/base/ossimBaseObjectFactory.h>
#include <ossim/imaging/ossimImageGeometry.h>
class ossimImageHandler;
class OSSIM_DLL ossimImageGeometryFactoryBase : public ossimBaseObjectFactory
{
public:
/**
* Creates an object given a type name.
*/
virtual ossimObject* createObject(const ossimString& typeName)const
{
return createGeometry(typeName);
}
/**
* Creates and object given a keyword list.
*/
virtual ossimObject* createObject(const ossimKeywordlist& kwl,
const char* prefix=0)const
{
return createGeometry(kwl, prefix);
}
virtual ossimImageGeometry* createGeometry(const ossimString& typeName)const=0;
virtual ossimImageGeometry* createGeometry(const ossimKeywordlist& kwl,
const char* prefix=0)const=0;
virtual ossimImageGeometry* createGeometry(const ossimFilename& filename,
ossim_uint32 entryIdx)const = 0;
virtual bool extendGeometry(ossimImageHandler* handler)const=0;
};
#endif
|