diff options
| author | Frank Warmerdam <warmerdam@pobox.com> | 2013-06-24 22:58:14 +0000 |
|---|---|---|
| committer | Frank Warmerdam <warmerdam@pobox.com> | 2013-06-24 22:58:14 +0000 |
| commit | 2b352ad4cd7fd9516cc197430b965a30639077b9 (patch) | |
| tree | cda7af980a45edfcc837e724653c0c9c0fc125dc /src/pj_ctx.c | |
| parent | 9725b4439dcce40fc464fd7062cb31b3fba94513 (diff) | |
| download | PROJ-2b352ad4cd7fd9516cc197430b965a30639077b9.tar.gz PROJ-2b352ad4cd7fd9516cc197430b965a30639077b9.zip | |
add missing set/get fileapi on context functions
git-svn-id: http://svn.osgeo.org/metacrs/proj/trunk@2354 4e78687f-474d-0410-85f9-8d5e500ac6b2
Diffstat (limited to 'src/pj_ctx.c')
| -rw-r--r-- | src/pj_ctx.c | 20 |
1 files changed, 20 insertions, 0 deletions
diff --git a/src/pj_ctx.c b/src/pj_ctx.c index ccd2292c..d34dac2c 100644 --- a/src/pj_ctx.c +++ b/src/pj_ctx.c @@ -177,4 +177,24 @@ void *pj_ctx_get_app_data( projCtx ctx ) return ctx->app_data; } +/************************************************************************/ +/* pj_ctx_set_fileapi() */ +/************************************************************************/ + +void pj_ctx_set_fileapi( projCtx ctx, projFileAPI *fileapi ) + +{ + ctx->fileapi = fileapi; +} + +/************************************************************************/ +/* pj_ctx_get_fileapi() */ +/************************************************************************/ + +projFileAPI *pj_ctx_get_fileapi( projCtx ctx ) + +{ + return ctx->fileapi; +} + |
