/usr/include/ossim/base/ossimImageRectangleEvent.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 | //*******************************************************************
//
// License: See top level LICENSE.txt file.
//
// Author: Garrett Potts
//
//*************************************************************************
// $Id: ossimImageRectangleEvent.h 9968 2006-11-29 14:01:53Z gpotts $
#ifndef ossimImageRectangleEvent_HEADER
#define ossimImageRectangleEvent_HEADER
#include <ossim/base/ossimEvent.h>
#include <ossim/base/ossimEventIds.h>
#include <ossim/base/ossimIrect.h>
class OSSIMDLLEXPORT ossimImageRectangleEvent : public ossimEvent
{
public:
ossimImageRectangleEvent(const ossimIrect& rect,
ossimObject* obj=NULL)
: ossimEvent(obj,OSSIM_EVENT_AOI_RECTANGLE_ID) ,
theRectangle(rect)
{
}
virtual ossimObject* dup()const
{
return new ossimImageRectangleEvent(*this);
}
const ossimIrect& getRectangle()const
{
return theRectangle;
}
void setRectangle(const ossimIrect& rect)
{
theRectangle = rect;
}
protected:
ossimIrect theRectangle;
};
#endif
|