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

« back to all changes in this revision

Viewing changes to port/cplkeywordparser.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: cplkeywordparser.h 18063 2009-11-21 21:11:49Z warmerdam $
 
2
 * $Id: cplkeywordparser.h 20996 2010-10-28 18:38:15Z rouault $
3
3
 *
4
4
 * Project:  Common Portability Library
5
5
 * Purpose:  Implementation of CPLKeywordParser - a class for parsing
57
57
    CPLKeywordParser();
58
58
    ~CPLKeywordParser();
59
59
 
60
 
    int     Ingest( FILE *fp );
 
60
    int     Ingest( VSILFILE *fp );
61
61
 
62
62
    const char *GetKeyword( const char *pszPath, const char *pszDefault=NULL );
63
63
    char  **GetAllKeywords() { return papszKeywordList; }