PageRenderTime 49ms CodeModel.GetById 18ms RepoModel.GetById 0ms app.codeStats 0ms

/vendor/boost/boost/python/import.hpp

https://bitbucket.org/piotrlegnica/goblin-camp-pl
C++ Header | 22 lines | 12 code | 5 blank | 5 comment | 0 complexity | a02c09fc6b627728071f95bc5ba6cc1a MD5 | raw file
Possible License(s): LGPL-3.0, LGPL-2.1, GPL-3.0
  1. // Copyright Stefan Seefeld 2005.
  2. // Distributed under the Boost Software License, Version 1.0. (See
  3. // accompanying file LICENSE_1_0.txt or copy at
  4. // http://www.boost.org/LICENSE_1_0.txt)
  5. #ifndef IMPORT_SS20050624_HPP
  6. # define IMPORT_SS20050624_HPP
  7. # include <boost/python/object.hpp>
  8. # include <boost/python/str.hpp>
  9. namespace boost
  10. {
  11. namespace python
  12. {
  13. // Import the named module and return a reference to it.
  14. object BOOST_PYTHON_DECL import(str name);
  15. }
  16. }
  17. #endif