/usr/include/ossim/imaging/ossimGridRemapEngineFactory.h is in libossim-dev 1.7.21-4.
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 | //*******************************************************************
//
// License: See top level LICENSE.txt file.
//
// AUTHOR: Oscar Kramer (okramer@imagelinks.com)
//
// DESCRIPTION: Contains declaration of class ossimGridRemapEngineFactory
//
// LIMITATIONS: None.
//
//*****************************************************************************
// $Id: ossimGridRemapEngineFactory.h 9968 2006-11-29 14:01:53Z gpotts $
#ifndef ossimGridRemapEngineFactory_HEADER
#define ossimGridRemapEngineFactory_HEADER
class ossimGridRemapEngine;
/*!****************************************************************************
*
* CLASS: ossimGridRemapEngineFactory (SIMPLETON)
*
*****************************************************************************/
class ossimGridRemapEngineFactory
{
public:
/*!
* Attempts to create an instance of the Product given a Specifier. Returns
* successfully constructed product or NULL.
*/
static ossimGridRemapEngine* create(const char* spec);
protected:
ossimGridRemapEngineFactory() {}
};
#endif
|