/usr/include/ossim/base/ossimImagePolygonEvent.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 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 | //*******************************************************************
// Copyright (C) 2000 ImageLinks Inc.
//
// License: See top level LICENSE.txt.
//
// Author: Garrett Potts (gpotts@imagelinks)
//
//*************************************************************************
// $Id: ossimImagePolygonEvent.h 13016 2008-06-10 16:06:58Z dburken $
#ifndef ossimImagePolygonEvent_HEADER
#define ossimImagePolygonEvent_HEADER
#include <vector>
#include <ossim/base/ossimEvent.h>
#include <ossim/base/ossimEventIds.h>
#include <ossim/base/ossimIpt.h>
#include <ossim/base/ossimDpt.h>
class OSSIMDLLEXPORT ossimImagePolygonEvent : public ossimEvent
{
public:
ossimImagePolygonEvent(const std::vector<ossimIpt>& polygon,
ossimObject* obj=0)
: ossimEvent(obj,OSSIM_EVENT_AOI_POLYGON_ID) ,
thePolygon(polygon)
{
}
ossimImagePolygonEvent(const std::vector<ossimDpt>& polygon,
ossimObject* obj=0)
: ossimEvent(obj,OSSIM_EVENT_AOI_POLYGON_ID),
thePolygon(polygon.size())
{
for (std::vector<ossimDpt>::size_type i = 0; i < polygon.size(); ++i)
{
thePolygon[i] = polygon[i];
}
}
virtual ossimObject* dup()const
{
return new ossimImagePolygonEvent(*this);
}
const std::vector<ossimIpt>& getpolygon()const
{
return thePolygon;
}
const std::vector<ossimIpt>& getPolygon()const
{
return thePolygon;
}
void setPolygon(const std::vector<ossimIpt>& polygon)
{
thePolygon = polygon;
}
void setPolygon(const std::vector<ossimDpt>& polygon)
{
thePolygon.resize(polygon.size());
for (std::vector<ossimDpt>::size_type i = 0; i < polygon.size(); ++i)
{
thePolygon[i] = polygon[i];
}
}
protected:
std::vector<ossimIpt> thePolygon;
};
#endif
|