Documented how to manage static objects

This commit is contained in:
Mathieu Champlon 2015-10-09 22:38:37 +02:00
parent e41b75e525
commit 4f0431842f
7 changed files with 98 additions and 14 deletions

View file

@ -6,6 +6,7 @@
/]
[section Patterns]
[import example/patterns_static_objects.cpp]
[import example/patterns_async_call.cpp]
[import example/patterns_retrieve_cref.cpp]
[import example/patterns_invoke_functor.cpp]
@ -13,6 +14,22 @@
This section highlights not-so-obvious features of the library gathered from real use cases.
[section Managing static mock objects]
Problem :
[static_objects_problem]
Partial solution :
[static_objects_partial_solution]
Solution :
[static_objects_solution]
[endsect]
[section Waiting for an asynchronous call]
Problem :