diff --git a/doc/develop/html/index.html b/doc/develop/html/index.html index 96e663ba..c17f8541 100644 --- a/doc/develop/html/index.html +++ b/doc/develop/html/index.html @@ -126,7 +126,7 @@
Last revised: January 04, 2021 at 06:32:40 GMT |
+Last revised: January 04, 2021 at 06:36:38 GMT |
#include <boost/python/module.hpp> #include <boost/python/class.hpp> +#include <boost/python/call_method.hpp> +#include <boost/python/def.hpp> #include <boost/utility.hpp> #include <cstring> @@ -89,7 +91,7 @@ { public: virtual char const* class_name() const { return "Base"; } - virtual ~Base(); + virtual ~Base() {}; }; bool is_base(Base* b) @@ -117,7 +119,7 @@ { def("is_base", is_base); - class_<Base,Base_callback, noncopyable>("Base") + class_<Base,Base_callback, boost::noncopyable>("Base") .def("class_name", &Base_callback::Base_name) ; diff --git a/doc/develop/html/reference/index.html b/doc/develop/html/reference/index.html index 7571e9ec..40a5d05e 100644 --- a/doc/develop/html/reference/index.html +++ b/doc/develop/html/reference/index.html @@ -127,7 +127,7 @@
Last revised: January 04, 2021 at 06:32:42 GMT |
+Last revised: January 04, 2021 at 06:36:40 GMT |
Last revised: January 04, 2021 at 06:32:41 GMT |
+Last revised: January 04, 2021 at 06:36:39 GMT |