/usr/include/ossim/elevation/ossimElevCellHandlerFactory.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 | //*******************************************************************
//
// License: See top level LICENSE.txt file.
//
// DESCRIPTION:
// Contains declaration of class ossimElevCellHandlerFactory. This factory
// class instantiates the proper ossimElevCellHandler given a file name.
//
// SOFTWARE HISTORY:
//>
// 26Apr2001 Oscar Kramer (okramer@imagelinks.com)
// Initial coding.
//<
//*****************************************************************************
#ifndef ossimElevCellHandlerFactory_HEADER
#define ossimElevCellHandlerFactory_HEADER
#include <list>
#include <ossim/base/ossimFactoryBaseTemplate.h>
class ossimElevCellHandler;
class ossimGpt;
/*!****************************************************************************
*
* CLASS: ossimElevCellHandlerFactory
*
*****************************************************************************/
class ossimElevCellHandlerFactory :
public ossimFactoryBase <ossimElevCellHandler>
{
public:
static ossimElevCellHandlerFactory* instance();
virtual ossimElevCellHandler* create(const ossimString&) const;
virtual ossimElevCellHandler* create(const ossimKeywordlist& kwl,
const char* prefix) const;
virtual std::list<ossimString> getList() const;
protected:
ossimElevCellHandlerFactory();
static ossimElevCellHandlerFactory* theInstance;
};
#endif
|