/usr/include/ossim/base/ossimLookUpTable.h is in libossim-dev 1.7.21-4.
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 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 | //*******************************************************************
// Copyright (C) 2000 ImageLinks Inc.
//
// License: LGPL
//
// See LICENSE.txt file in the top level directory for more details.
//
// Author: David Burken
//
// Description:
//
// Contains class declaration for LookUpTable.
//*******************************************************************
// $Id: ossimLookUpTable.h 14789 2009-06-29 16:48:14Z dburken $
#ifndef ossimLookUpTable_HEADER
#define ossimLookUpTable_HEADER
#include <vector>
#include <ossim/base/ossimConstants.h>
#include <ossim/base/ossimString.h>
#include <ossim/base/ossimKeyword.h>
class ossimKeywordlist;
//*******************************************************************
// CLASS: LookUpTable
//*******************************************************************
class OSSIMDLLEXPORT ossimLookUpTable
{
public:
enum
{
NOT_FOUND = -1
};
virtual ~ossimLookUpTable();
/*!
* @return
* Returns the entry string associated with the entry number (key) passed
* in. Returns empty string if entry number is not in the list.
*/
virtual ossimString getEntryString(ossim_int32 entry_number) const;
/*!
* @param table_index Index into the table
* Note: This is not the key mapped to the but the index into the table.
* @return
* Returns the entry string associated with the table index passed in.
* Returns empty string if index is out of range.
*/
virtual ossimString getTableIndexString(ossim_uint32 table_index) const;
/*!
* Returns the entry string associated with the entry number passed in.
* Returns empty string if entry number is not in the list.
*/
virtual ossimString operator[](ossim_int32 entry_number) const;
/*!
* Returns the entry string associated with lookup table keyword entry
* in the Keywordlist passed in.
* Returns empty string if keyword entry is not in the Keywordlist.
*/
virtual ossimString getEntryString(const ossimKeywordlist& kwl,
const char* prefix=0) const;
/*!
* Returns the entry number associated with the entry string passed in.
* Returns NOT_FOUND(-1) if entry string is not in the list.
* If case_insensitive == true(default), the test is case insensitive;
* else, the test will be case sensitive.
*/
virtual ossim_int32 getEntryNumber(const char* entry_string,
bool case_insensitive = true) const;
/*!
* Returns the entry number associated with the lookup table keyword
* entry in the Keywordlist passed in. Returns NOT_FOUND(-1) if no
* matching entry.
* If case_insensitive == true(default), the test is case insensitive;
* else, the test will be case sensitive.
*/
virtual ossim_int32 getEntryNumber(const ossimKeywordlist& kwl,
const char* prefix=0,
bool case_insensitive = true) const;
/*!
* Returns keyword for lookups from a Keywordlist.
*/
virtual ossimKeyword getKeyword() const=0;
virtual ossim_uint32 getTableSize() const;
void dumpValues(std::ostream& out)const;
protected:
ossimLookUpTable(ossim_int32 table_size);
class ossimKeyValueMap
{
public:
ossim_int32 theKey;
ossimString theValue;
};
std::vector<ossimKeyValueMap> theTable;
private:
ossimLookUpTable(){} // disallow...
};
#endif
|