Skip to content
Snippets Groups Projects
Select Git revision
  • 3e5df2b861b5fb55ae380ab506177cd16ee8f39b
  • master default protected
  • v4.5.2
  • v4.5.1
  • v4.5.0
  • v4.4.0
  • v4.3.3
  • v4.3.2
  • v4.3.1
  • v4.3.0
  • v4.2.0
  • v4.1.0
  • v4.0.2
  • v4.0.1
  • v4.0.0
  • v3.4.0
  • v3.3.0
  • v3.2.0
  • v3.1.1
  • v3.1.0
  • v3.0.1
  • v3.0.0
22 results

Repository

Blame
  • rastergm.i 335 B
    %module(package="csmapi") rastergm
    %{
        #include "RasterGM.h"
    %}
    
    %ignore CSM_RASTER_FAMILY;
    %include exception.i
    %exception {
        try {
            $action
        } catch (const std::exception &e) {
            SWIG_exception(SWIG_RuntimeError, e.what());
        }
    } 
    
    
    %import model.i
    %import geometricmodel.i
    %import csm.i
    
    %include RasterGM.h