/usr/include/ossim/projection/ossimSrsProjectionFactory.h is in libossim-dev 1.7.21-3ubuntu2.
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 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 | //*******************************************************************
// Copyright (C) 2005 Garrett Potts
//
// License: See top level LICENSE.txt file.
//
// Author: Garrett Potts
//
//*******************************************************************
// $Id: ossimSrsProjectionFactory.h 12081 2007-11-26 21:44:18Z dburken $
#ifndef ossimSrsProjectionFactory_HEADER
#define ossimSrsProjectionFactory_HEADER
#include <ossim/projection/ossimProjectionFactoryBase.h>
class ossimProjection;
class ossimString;
class OSSIMDLLEXPORT ossimSrsProjectionFactory : public ossimProjectionFactoryBase
{
public:
/*!
* METHOD: instance()
* Instantiates singleton instance of this class:
*/
static ossimSrsProjectionFactory* instance();
virtual ossimProjection* createProjection(const ossimFilename& filename,
ossim_uint32 entryIdx)const;
/*!
* METHOD: create()
* Attempts to create an instance of the projection specified by name.
* Returns successfully constructed projection or NULL.
*/
virtual ossimProjection* createProjection(const ossimString& name)const;
virtual ossimProjection* createProjection(const ossimKeywordlist& kwl,
const char* prefix = 0)const;
virtual ossimObject* createObject(const ossimString& typeName)const;
/*!
* Creates and object given a keyword list.
*/
virtual ossimObject* createObject(const ossimKeywordlist& kwl,
const char* prefix=0)const;
/*!
* This should return the type name of all objects in all factories.
* This is the name used to construct the objects dynamially and this
* name must be unique.
*/
virtual void getTypeNameList(std::vector<ossimString>& typeList)const;
protected:
ossimSrsProjectionFactory() {}
static ossimSrsProjectionFactory* theInstance;
};
#endif
|