//******************************************************************* // Copyright (C) 2000 ImageLinks Inc. // // License: MIT // // See LICENSE.txt file in the top level directory for more details. // // Author: Garrett Potts (gpotts@imagelinks.com) // // Description: // //******************************************************************* // $Id: ossimQuickbirdNitfTileSource.h 23664 2015-12-14 14:17:27Z dburken $ #ifndef ossimQuickbirdNitfTileSource_HEADER #define ossimQuickbirdNitfTileSource_HEADER #include #include class ossimQuickbirdNitfTileSource : public ossimNitfTileSource { public: virtual bool open(); virtual ossimRefPtr getImageGeometry(); /** * Method to save the state of an object to a keyword list. * Return true if ok or false on error. */ virtual bool saveState(ossimKeywordlist& kwl, const char* prefix=0)const; /** * Method to the load (recreate) the state of an object from a keyword * list. Return true if ok or false on error. */ virtual bool loadState(const ossimKeywordlist& kwl, const char* prefix=0); protected: ossimRefPtr m_transform; TYPE_DATA }; #endif