/usr/include/ossim/projection/ossimNgaProjectionFactory.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 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 | //*******************************************************************
// Copyright (C) 2014 RadiantBlue, Inc.
//
// License: MIT
//
// See LICENSE.txt file in the top level directory for more details.
//
//*******************************************************************
// $Id$
#ifndef ossimNgaProjectionFactory_HEADER
#define ossimNgaProjectionFactory_HEADER
#include <ossim/projection/ossimProjectionFactoryBase.h>
class OSSIM_DLL ossimNgaProjectionFactory : public ossimProjectionFactoryBase
{
public:
static ossimNgaProjectionFactory* instance();
/**
* takes a filename. This filename can be an image file or
* it can also be a ossim .geom file. It could be other
* forms of geom files as well. The factories job will be to
* determine what parser to use and return a projection if
* successful.
*/
virtual ossimProjection* createProjection(const ossimFilename& filename,
ossim_uint32 entryIdx)const;
/**
* Take a projection type name.
*/
virtual ossimProjection* createProjection(const ossimString& name)const;
/**
* Take a keywordlist.
*/
virtual ossimProjection* createProjection(const ossimKeywordlist& kwl,
const char* prefix)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:
//! Constructor loads all SRS CSV files specified in the ossim prefs. Protected as part of
//! singleton implementation.
ossimNgaProjectionFactory() {}
TYPE_DATA
};
#endif
|