diff --git a/doc/Doxyfile b/doc/Doxyfile index 80d257bf0..36e493d78 100644 --- a/doc/Doxyfile +++ b/doc/Doxyfile @@ -898,7 +898,7 @@ IGNORE_PREFIX = # If the GENERATE_HTML tag is set to YES (the default) Doxygen will # generate HTML output. -GENERATE_HTML = YES +GENERATE_HTML = NO # The HTML_OUTPUT tag is used to specify where the HTML docs will be put. # If a relative path is entered the value of OUTPUT_DIRECTORY will be @@ -1511,13 +1511,13 @@ ENABLE_PREPROCESSING = YES # compilation will be performed. Macro expansion can be done in a controlled # way by setting EXPAND_ONLY_PREDEF to YES. -MACRO_EXPANSION = NO +MACRO_EXPANSION = YES # If the EXPAND_ONLY_PREDEF and MACRO_EXPANSION tags are both set to YES # then the macro expansion is limited to the macros specified with the # PREDEFINED and EXPAND_AS_DEFINED tags. -EXPAND_ONLY_PREDEF = NO +EXPAND_ONLY_PREDEF = YES # If the SEARCH_INCLUDES tag is set to YES (the default) the includes files # pointed to by INCLUDE_PATH will be searched when a #include is found. @@ -1545,7 +1545,8 @@ INCLUDE_FILE_PATTERNS = # undefined via #undef or recursively expanded use the := operator # instead of the = operator. -PREDEFINED = +PREDEFINED = "BOOST_RV_REF(T)=T &&" \ + "BOOST_COPY_ASSIGN_REF(T)=const T &" # If the MACRO_EXPANSION and EXPAND_ONLY_PREDEF tags are set to YES then # this tag can be used to specify a list of macro names that should be expanded. diff --git a/doc/html/geometry_index/r_tree/index.html b/doc/html/geometry_index/r_tree/index.html index 909d846be..0942d1db1 100644 --- a/doc/html/geometry_index/r_tree/index.html +++ b/doc/html/geometry_index/r_tree/index.html @@ -31,7 +31,7 @@ boost::geometry::index::rtree

- +

@@ -47,7 +47,10 @@

-
template<typename Value, typename Parameters, typename Translator, typename Allocator>
+
template<typename Value,
+         typename Parameters,
+         typename Translator,
+         typename Allocator>
 class boost::geometry::index::rtree
 {
   // ...
@@ -87,7 +90,9 @@
 
 
                   

- typename Value +

+
Value
+

@@ -101,7 +106,9 @@

- typename Parameters +

+
Parameters
+

@@ -122,12 +129,16 @@

- typename Translator +

+
Translator
+

- translator::def<Value> +

+
translator::def<Value>
+

@@ -146,12 +157,16 @@

- typename Allocator +

+
Allocator
+

- std::allocator<Value> +

+
std::allocator<Value>
+

@@ -194,7 +209,9 @@

-
rtree(Parameters parameters = Parameters(), translator_type const & translator = translator_type(), Allocator allocator = Allocator())
+
rtree(parameters_type parameters = parameters_type(),
+      translator_type const & translator = translator_type(),
+      allocator_type allocator = allocator_type())

@@ -205,7 +222,7 @@

- Parameters: parameters: + parameters_type: parameters: The parameters object.

@@ -213,7 +230,7 @@ translator: The translator object.

- Allocator: allocator: + allocator_type: allocator: The allocator object.

@@ -223,7 +240,11 @@

template<typename Iterator>
-rtree(Iterator first, Iterator last, Parameters parameters = Parameters(), translator_type const & translator = translator_type(), Allocator allocator = std::allocator< value_type >())
+rtree(Iterator first, + Iterator last, + parameters_type parameters = parameters_type(), + translator_type const & translator = translator_type(), + allocator_type allocator = allocator_type())

@@ -242,7 +263,7 @@ The end of the range of Values.

- Parameters: parameters: + parameters_type: parameters: The parameters object.

@@ -250,7 +271,7 @@ translator: The translator object.

- Allocator: allocator: + allocator_type: allocator: The allocator object.

@@ -260,7 +281,10 @@

template<typename Range>
-rtree(Range const & rng, Parameters parameters = Parameters(), translator_type const & translator = translator_type(), Allocator allocator = std::allocator< value_type >())
+rtree(Range const & rng, + parameters_type parameters = parameters_type(), + translator_type const & translator = translator_type(), + allocator_type allocator = allocator_type())

@@ -275,7 +299,7 @@ The range of Values.

- Parameters: parameters: + parameters_type: parameters: The parameters object.

@@ -283,7 +307,7 @@ translator: The translator object.

- Allocator: allocator: + allocator_type: allocator: The allocator object.

@@ -313,7 +337,7 @@

-
rtree(rtree const & src, Allocator const & allocator)
+
rtree(rtree const & src, allocator_type const & allocator)

@@ -329,8 +353,8 @@ The rtree which content will be copied.

- Allocator const &: allocator: - The allocator which will be used. + allocator_type const &: + allocator: The allocator which will be used.

@@ -338,7 +362,7 @@

-
rtree(BOOST_RV_REF(rtree) src)
+
rtree(rtree && src)

@@ -350,7 +374,7 @@

- BOOST_RV_REF(rtree): src: + rtree &&: src: The rtree which content will be moved.

@@ -413,7 +437,7 @@

-
rtree & operator=(BOOST_COPY_ASSIGN_REF(rtree) src)
+
rtree & operator=(const rtree & src)

@@ -425,8 +449,8 @@

- BOOST_COPY_ASSIGN_REF(rtree): - src: The rtree which content will be copied. + const rtree &: src: + The rtree which content will be copied.

  @@ -435,7 +459,7 @@

-
rtree & operator=(BOOST_RV_REF(rtree) src)
+
rtree & operator=(rtree && src)

@@ -447,7 +471,7 @@

- BOOST_RV_REF(rtree): src: + rtree &&: src: The rtree which content will be moved.

@@ -501,7 +525,8 @@

template<typename Iterator>
-void insert(Iterator first, Iterator last)
+void +insert(Iterator first, Iterator last)

@@ -575,7 +600,8 @@

template<typename Iterator>
-size_type remove(Iterator first, Iterator last)
+size_type +remove(Iterator first, Iterator last)

@@ -638,7 +664,8 @@

template<typename Predicates, typename OutIter>
-size_type spatial_query(Predicates const & pred, OutIter out_it)
+size_type +spatial_query(Predicates const & pred, OutIter out_it)

@@ -676,7 +703,8 @@

template<typename DistancesPredicates>
-size_type nearest_query(DistancesPredicates const & dpred, value_type & v)
+size_type +nearest_query(DistancesPredicates const & dpred, value_type & v)

@@ -719,7 +747,10 @@

template<typename DistancesPredicates, typename Predicates>
-size_type nearest_query(DistancesPredicates const & dpred, Predicates const & pred, value_type & v)
+size_type +nearest_query(DistancesPredicates const & dpred, + Predicates const & pred, + value_type & v)

@@ -772,7 +803,10 @@

template<typename DistancesPredicates, typename OutIter>
-size_type nearest_query(DistancesPredicates const & dpred, size_t k, OutIter out_it)
+size_type +nearest_query(DistancesPredicates const & dpred, + size_t k, + OutIter out_it)

@@ -818,8 +852,14 @@

-
template<typename DistancesPredicates, typename Predicates, typename OutIter>
-size_type nearest_query(DistancesPredicates const & dpred, size_t k, Predicates const & pred, OutIter out_it)
+
template<typename DistancesPredicates,
+         typename Predicates,
+         typename OutIter>
+size_type
+nearest_query(DistancesPredicates const & dpred,
+              size_t k,
+              Predicates const & pred,
+              OutIter out_it)

diff --git a/doc/html/index.html b/doc/html/index.html index da79de784..a5aed9f76 100644 --- a/doc/html/index.html +++ b/doc/html/index.html @@ -57,7 +57,7 @@ - +

Last revised: January 07, 2013 at 01:46:17 GMT

Last revised: January 07, 2013 at 03:21:24 GMT