~ubuntu-branches/debian/sid/gdal/sid

« back to all changes in this revision

Viewing changes to ogr/ogrsf_frmts/s57/s57.h

  • Committer: Package Import Robot
  • Author(s): Francesco Paolo Lovergine
  • Date: 2012-05-07 15:04:42 UTC
  • mfrom: (5.5.16 experimental)
  • Revision ID: package-import@ubuntu.com-20120507150442-2eks97loeh6rq005
Tags: 1.9.0-1
* Ready for sid, starting transition.
* All symfiles updated to latest builds.
* Added dh_numpy call in debian/rules to depend on numpy ABI.
* Policy bumped to 3.9.3, no changes required.

Show diffs side-by-side

added added

removed removed

Lines of Context:
1
1
/******************************************************************************
2
 
 * $Id: s57.h 11537 2007-05-16 03:35:17Z warmerdam $
 
2
 * $Id: s57.h 22469 2011-05-31 14:19:18Z warmerdam $
3
3
 *
4
4
 * Project:  S-57 Translator
5
5
 * Purpose:  Declarations for S-57 translator not including the
93
93
/************************************************************************/
94
94
 
95
95
#define MAX_CLASSES 23000
96
 
#define MAX_ATTRIBUTES 25000
 
96
#define MAX_ATTRIBUTES 65535
97
97
 
98
98
class CPL_DLL S57ClassRegistrar
99
99
{
116
116
    char     ***papapszAttrValues;
117
117
    char       *pachAttrType;
118
118
    char       *pachAttrClass;
119
 
    int        *panAttrIndex; // sorted by acronym.
 
119
    GUInt16    *panAttrIndex; // sorted by acronym.
120
120
 
121
121
    int         FindFile( const char *pszTarget, const char *pszDirectory,
122
122
                          int bReportErr, FILE **fp );
161
161
#define SAT_FREE_TEXT   'S'
162
162
 
163
163
    char        GetAttrClass( int i ) { return pachAttrClass[i]; }
164
 
    int         FindAttrByAcronym( const char * );
 
164
    GInt16      FindAttrByAcronym( const char * );
165
165
 
166
166
};
167
167