From c81af4ffe0399a40a4ff6efab10d7ce8fa7e6cfb Mon Sep 17 00:00:00 2001 From: Bruno da Silva de Oliveira Date: Fri, 23 May 2003 18:01:39 +0000 Subject: [PATCH] - Two new questions, about compiling time and creating packages. [SVN r18515] --- doc/v2/faq.html | 19 +++++++++++++++++++ 1 file changed, 19 insertions(+) diff --git a/doc/v2/faq.html b/doc/v2/faq.html index 3c2b4c24..3cd028ef 100644 --- a/doc/v2/faq.html +++ b/doc/v2/faq.html @@ -57,6 +57,11 @@
How can I wrap a function which needs to take ownership of a raw pointer?
+ +
Compilation takes too much time and eats too much memory! + What can I do to make it faster?
+ +
How do I create sub-packages using Boost.Python?

@@ -543,6 +548,20 @@ void b_insert(B& b, std::auto_ptr<A> a) "manage_new_object.html#manage_new_object-spec">manage_new_object will also be held by auto_ptr, so this transfer-of-ownership will also work correctly. + +

Compilation takes too much time and eats too + much memory! What can I do to make it faster?

+

+ Please refer to the Techniques + section in the tutorial. +

+ +

How do I create sub-packages using Boost.Python?

+

+ In the Techniques + section of the tutorial this topic is explored. +

+

Revised