1 /**
2 This package contains tutorials for most of functionality provided by aedi framework.
3 See source code as well for runnable examples.
4 
5 $(OL
6     $(LI $(LINK2 /aedi/examples/minimal.html, minimal))
7     $(LI $(LINK2 /aedi/examples/dependencies.html, dependencies))
8     $(LI $(LINK2 /aedi/examples/named_dependencies.html, named_dependencies))
9     $(LI $(LINK2 /aedi/examples/configuration_primitives.html, configuration_primitives))
10     $(LI $(LINK2 /aedi/examples/multiple_containers.html, multiple_containers))
11     $(LI $(LINK2 /aedi/examples/value_container.html, value_container))
12     $(LI $(LINK2 /aedi/examples/memory_management.html, memory_management))
13     $(LI $(LINK2 /aedi/examples/annotation_configuration.html, annotation_configuration))
14     $(LI $(LINK2 /aedi/examples/decorating_containers.html, decorating_containers))
15     $(LI $(LINK2 /aedi/examples/extending_containers.html, extending_containers))
16     $(LI $(LINK2 /aedi/examples/extending_factory.html, extending_factory))
17     $(LI $(LINK2 /aedi/examples/extending_generic_factory.html, extending_generic_factory))
18 )
19 License:
20     Boost Software License - Version 1.0 - August 17th, 2003
21 
22     Permission is hereby granted, free of charge, to any person or organization
23     obtaining a copy of the software and accompanying documentation covered by
24     this license (the "Software") to use, reproduce, display, distribute,
25     execute, and transmit the Software, and to prepare derivative works of the
26     Software, and to permit third-parties to whom the Software is furnished to
27     do so, all subject to the following:
28 
29     The copyright notices in the Software and this entire statement, including
30     the above license grant, this restriction and the following disclaimer,
31     must be included in all copies of the Software, in whole or in part, and
32     all derivative works of the Software, unless such copies or derivative
33     works are solely in the form of machine-executable object code generated by
34     a source language processor.
35 
36     THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
37     IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
38     FITNESS FOR A PARTICULAR PURPOSE, TITLE AND NON-INFRINGEMENT. IN NO EVENT
39     SHALL THE COPYRIGHT HOLDERS OR ANYONE DISTRIBUTING THE SOFTWARE BE LIABLE
40     FOR ANY DAMAGES OR OTHER LIABILITY, WHETHER IN CONTRACT, TORT OR OTHERWISE,
41     ARISING FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER
42     DEALINGS IN THE SOFTWARE.
43 
44 Authors:
45     Alexandru Ermicioi
46 **/
47 
48 module examples;
49 
50 public import annotation_configuration;
51 public import configuration_primitives;
52 public import decorating_containers;
53 public import dependencies;
54 public import extending_containers;
55 public import extending_factory;
56 public import extending_generic_factory;
57 public import memory_management;
58 public import minimal;
59 public import multiple_containers;
60 public import named_dependencies;
61 public import value_container;