Skip to content
Snippets Groups Projects
Select Git revision
  • 349abe7e0132111737153bf2d4b1692d091b5ea8
  • master default protected
  • github/fork/hrani/master
  • github/fork/dilawar/master
  • chamcham
  • chhennapoda
  • wheel
  • 3.2.0-pre0
  • v3.1.3
  • 3.1.2
  • 3.1.1
  • chamcham-3.1.1
  • 3.1.0
  • ghevar_3.0.2_pre2
  • ghevar_3.0.2
15 results

synapse.py

Blame
  • context.hpp 197 B
    #pragma once
    
    #include <arbor/context.hpp>
    
    namespace pyarb {
    
    struct context_shim {
        arb::context context;
        context_shim(arb::context&& c): context(std::move(c)) {}
    };
    
    } // namespace pyarb