| 92 | /// \sa constructor |
| 93 | template<typename T> |
| 94 | void basic_constructors(const std::string &type, Module& m) |
| 95 | { |
| 96 | m.add(constructor<T ()>(), type); |
| 97 | copy_constructor<T>(type, m); |
| 98 | } |
| 99 | |
| 100 | /// \brief Adds a constructor for a POD type |
| 101 | /// \tparam T The type to add the constructor for |