/usr/include/ossim/base/ossimFontProperty.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 (gpotts@imagelinks.com)
//
//*************************************************************************
// $Id: ossimFontProperty.h 9968 2006-11-29 14:01:53Z gpotts $
#ifndef ossimFontProperty_HEADER
#define ossimFontProperty_HEADER
#include <ossim/base/ossimProperty.h>
#include <ossim/base/ossimFontInformation.h>
class OSSIMDLLEXPORT ossimFontProperty : public ossimProperty
{
public:
ossimFontProperty(const ossimString& name,
const ossimFontInformation& value);
ossimFontProperty(const ossimFontProperty& rhs);
virtual ~ossimFontProperty();
virtual ossimObject* dup()const;
virtual const ossimProperty& assign(const ossimProperty& rhs);
virtual bool setValue(const ossimString& value);
virtual void valueToString(ossimString& valueResult)const;
void setFontInformation(ossimFontInformation& fontInfo);
const ossimFontInformation& getFontInformation()const;
protected:
ossimFontInformation theValue;
TYPE_DATA
};
#endif
|