1. 19 Sep, 2016 1 commit
  2. 07 Sep, 2016 1 commit
    • Jason Rhinelander's avatar
      Allow passing base types as a template parameter · 6b52c838
      Jason Rhinelander authored
      This allows a slightly cleaner base type specification of:
      
          py::class_<Type, Base>("Type")
      
      as an alternative to
      
          py::class_<Type>("Type", py::base<Base>())
      
      As with the other template parameters, the order relative to the holder
      or trampoline types doesn't matter.
      
      This also includes a compile-time assertion failure if attempting to
      specify more than one base class (but is easily extendible to support
      multiple inheritance, someday, by updating the class_selector::set_bases
      function to set multiple bases).
      6b52c838
  3. 22 Jun, 2016 1 commit
  4. 03 Jun, 2016 1 commit
  5. 07 Feb, 2016 1 commit
  6. 17 Jan, 2016 3 commits
  7. 19 Oct, 2015 1 commit
  8. 18 Oct, 2015 1 commit
  9. 15 Oct, 2015 2 commits
  10. 13 Oct, 2015 2 commits