Skip to content

Commit

Permalink
Added new constants file.
Browse files Browse the repository at this point in the history
  • Loading branch information
dburken committed Oct 15, 2019
1 parent f165785 commit 11b11fd
Showing 1 changed file with 35 additions and 0 deletions.
35 changes: 35 additions & 0 deletions sqlite/src/ossimSqliteConstants.h
Original file line number Diff line number Diff line change
@@ -0,0 +1,35 @@
//---
//
// License: MIT
//
// Description: Sqlite constants.
//
//---
// $Id$

#ifndef ossimSqliteConstants_HEADER
#define ossimSqliteConstants_HEADER 1

namespace ossim
{
enum TileType
{
UNKNOWN_TILE = 0,
JPEG_TILE = 1,
PNG_TILE = 2
};

enum WriterMode
{
UNKNOWN = 0,
JPEG = 1, // RGB, 8-bit, JPEG compressed
PNG = 2, // PNG,
PNGA = 3, // PNG with alpha
MIXED = 4, // full tiles=jpeg, partials=pnga
JPEGPNGA = 4, // full tiles=jpeg, partials=pnga(same as mixed)
JPEGPNG = 5 // full tiles=jpeg, partials=png
};

} // End: namespace ossim

#endif /* End of "#ifndef ossimSqliteConstants_HEADER" */

0 comments on commit 11b11fd

Please sign in to comment.