Skip to content
Snippets Groups Projects
Select Git revision
  • c3c1f9c7767833b1fcb7cc89a6bd4d232f8db726
  • main default protected
  • 1.0.2
  • 1.0.1
  • 1.0.0
5 results

rastergm.i

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