/usr/include/ossim/base/ossimObjectDestructingEvent.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 | #ifndef ossimObjectDestructingEvent_HEADER
#define ossimObjectDestructingEvent_HEADER
#include <ossim/base/ossimEvent.h>
#include <ossim/base/ossimEventIds.h>
class ossimObject;
class OSSIMDLLEXPORT ossimObjectDestructingEvent : public ossimEvent
{
public:
ossimObjectDestructingEvent(ossimObject* objectDestructing=NULL)
:ossimEvent(objectDestructing, OSSIM_EVENT_OBJECT_DESTRUCTING_ID)
{}
virtual ossimObject* dup()const{return new ossimObjectDestructingEvent(*this);}
TYPE_DATA
};
#endif
|