/usr/include/ossim/base/ossimPropertyInterface.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 | //*******************************************************************
// Copyright (C) 2000 ImageLinks Inc.
//
// LICENSE: MIT see top level license.txt
//
// Author: Garrett Potts (gpotts@imagelinks)
//
//*************************************************************************
// $Id: ossimPropertyInterface.h 12989 2008-06-04 17:05:41Z gpotts $
#ifndef ossimPropertyInterface_HEADER
#define ossimPropertyInterface_HEADER
#include <ossim/base/ossimKeywordlist.h>
#include <ossim/base/ossimObject.h>
#include <ossim/base/ossimRefPtr.h>
#include <ossim/base/ossimProperty.h>
class OSSIM_DLL ossimPropertyInterface
{
public:
ossimPropertyInterface()
{}
virtual ~ossimPropertyInterface()
{}
virtual void setProperty(const ossimString& name,
const ossimString& value);
virtual void setProperty(ossimRefPtr<ossimProperty> property);
virtual ossimRefPtr<ossimProperty> getProperty(const ossimString& name)const;
virtual ossimString getPropertyValueAsString(const ossimString& name)const;
virtual void getPropertyNames(std::vector<ossimString>& propertyNames)const;
void getPropertyList(std::vector<ossimRefPtr<ossimProperty> >& propertyList)const;
void setProperties(std::vector<ossimRefPtr<ossimProperty> >& propertyList);
protected:
TYPE_DATA
};
#endif
|