OSSIM - Open Source Software Image Map
Version 1.9.0 (20180803)
|
#include <ossimGpkgWriterInterface.h>
Public Member Functions | |
ossimGpkgWriterInterface () | |
GP: I had to add this or windows would not link with the latest compiler. More... | |
virtual bool | openFile (const ossimKeywordlist &options)=0 |
Opens file for writing, appending, merging without an input connection. More... | |
virtual ossim_int32 | beginTileProcessing ()=0 |
Calls initial sqlite3_prepare_v2 statement. More... | |
virtual bool | writeTile (ossimRefPtr< ossimImageData > &tile, ossim_int32 zoomLevel, ossim_int64 row, ossim_int64 col)=0 |
Direct interface to writing a tile to database. More... | |
virtual bool | writeCodecTile (ossim_uint8 *codecTile, ossim_int32 codecTileSize, ossim_int32 zoomLevel, ossim_int64 row, ossim_int64 col)=0 |
virtual void | finalizeTileProcessing ()=0 |
Calls sqlite3_finalize(pStmt) terminating tile processing. More... | |
Definition at line 28 of file ossimGpkgWriterInterface.h.
ossimGpkgWriterInterface::ossimGpkgWriterInterface | ( | ) |
GP: I had to add this or windows would not link with the latest compiler.
Also had to put in dot.cpp for debug mode(again windows). (drb)
Definition at line 20 of file ossimGpkgWriterInterface.cpp.
|
pure virtual |
Calls initial sqlite3_prepare_v2 statement.
Must be called prior to calling writeTile.
Implemented in ossimGpkgWriter.
|
pure virtual |
Calls sqlite3_finalize(pStmt) terminating tile processing.
Implemented in ossimGpkgWriter.
|
pure virtual |
Opens file for writing, appending, merging without an input connection.
I.e. opening, then calling writeTile directly.
options. | Keyword list containing all options. |
Implemented in ossimGpkgWriter.
|
pure virtual |
Implemented in ossimGpkgWriter.
|
pure virtual |
Direct interface to writing a tile to database.
tile | to write. |
zoolLevel | |
row | |
col |
Implemented in ossimGpkgWriter.