1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22
|
/*
* $Id: ogr_php.i 8189 2005-09-02 16:19:23Z kruland $
*
* php specific code for ogr bindings.
*/
/*
* $Log$
* Revision 1.1 2005/09/02 16:19:23 kruland
* Major reorganization to accommodate multiple language bindings.
* Each language binding can define renames and supplemental code without
* having to have a lot of conditionals in the main interface definition files.
*
*/
%init %{
if ( OGRGetDriverCount() == 0 ) {
OGRRegisterAll();
}
%}
%include typemaps_php.i
|