/usr/include/ossim/imaging/ossimQbTileFilesHandler.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 44 | //**************************************************************************************************
//
// License: MIT
//
// See LICENSE.txt file in the top level directory for more details.
//
// Author: Oscar Kramer
//
//**************************************************************************************************
// $Id: ossimQbTileFilesHandler.h 2669 2011-06-06 12:28:20Z oscar.kramer $
#ifndef ossimQbTileFilesHandler_HEADER
#define ossimQbTileFilesHandler_HEADER
#include <ossim/imaging/ossimTiledImageHandler.h>
// Enable this flag to utilize the system of separate overviews for each tile-file
#define USING_SUB_OVRS 0
//! Image handler used for tiled Quickbird imagery.
class OSSIMDLLEXPORT ossimQbTileFilesHandler : public ossimTiledImageHandler
{
public:
//! Constructor (default):
ossimQbTileFilesHandler();
//! Destructor:
virtual ~ossimQbTileFilesHandler();
//! @return Returns true on success, false on error.
//! @note This method relies on the data member ossimImageData::theImageFile being set.
virtual bool open();
virtual ossimRefPtr<ossimImageGeometry> getImageGeometry();
protected:
//! Initializes tile image rects by considering adjacent row/col offsets. Called when TIL
//! doesn't contain the info. Returns true if successful.
bool computeImageRects();
TYPE_DATA
};
#endif /* #ifndef ossimQbTileFilesHandler_HEADER */
|