/usr/include/ossim/base/ossimIdManager.h is in libossim-dev 1.8.16-4ubuntu1.
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 | #ifndef ossimIdManager_HEADER
#define ossimIdManager_HEADER
#include <ossim/base/ossimId.h>
class OSSIMDLLEXPORT ossimIdManager
{
public:
   static ossimIdManager* instance();
   ossimId generateId();
   ossimId generateId(ossim_int64 customId);
   void setCurrentId(ossim_int64 customId);
   
protected:
   ossimIdManager(); // make sure this can't be constructed outside
   ossimIdManager(const ossimIdManager& rhs);
   ~ossimIdManager();
   void operator =(const ossimIdManager& rhs);
   static ossimIdManager* theInstance;
   static ossim_int64            theCurrentId;
};
#endif
 |