/usr/include/ossim/base/ossimPropertyInterfaceFactory.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 | //*******************************************************************
//
// License: See top level LICENSE.txt file.
//
// Author: Garrett Potts
// Description:
//
//*************************************************************************
// $Id: ossimPropertyInterfaceFactory.h 14789 2009-06-29 16:48:14Z dburken $
#ifndef ossimPropertyInterfaceFactory_HEADER
#define ossimPropertyInterfaceFactory_HEADER
#include <ossim/base/ossimRtti.h>
#include <ossim/base/ossimObjectFactory.h>
class ossimObject;
class ossimPropertyInterface;
class OSSIMDLLEXPORT ossimPropertyInterfaceFactory : public ossimObjectFactory
{
public:
ossimPropertyInterfaceFactory()
:ossimObjectFactory()
{}
virtual ~ossimPropertyInterfaceFactory()
{}
virtual ossimPropertyInterface* createInterface( const ossimObject* obj ) const = 0;
TYPE_DATA
};
#endif
|