mirror of
https://github.com/mbierlee/poodinis.git
synced 2024-11-15 04:04:01 +01:00
Update copyrights
This commit is contained in:
parent
ba38bf7952
commit
343dd65fdf
|
@ -1,4 +1,4 @@
|
||||||
Copyright (c) 2014-2018 Mike Bierlee
|
Copyright (c) 2014-2019 Mike Bierlee
|
||||||
|
|
||||||
Permission is hereby granted, free of charge, to any person obtaining a copy
|
Permission is hereby granted, free of charge, to any person obtaining a copy
|
||||||
of this software and associated documentation files (the "Software"), to deal
|
of this software and associated documentation files (the "Software"), to deal
|
||||||
|
|
|
@ -1,7 +1,7 @@
|
||||||
Poodinis Dependency Injection Framework
|
Poodinis Dependency Injection Framework
|
||||||
=======================================
|
=======================================
|
||||||
Version 8.0.3
|
Version 8.0.3
|
||||||
Copyright 2014-2018 Mike Bierlee
|
Copyright 2014-2019 Mike Bierlee
|
||||||
Licensed under the terms of the MIT license - See [LICENSE.txt](LICENSE.txt)
|
Licensed under the terms of the MIT license - See [LICENSE.txt](LICENSE.txt)
|
||||||
|
|
||||||
Master: [![Build Status](https://api.travis-ci.org/mbierlee/poodinis.png?branch=master)](https://travis-ci.org/mbierlee/poodinis) - Dev: [![Build Status](https://api.travis-ci.org/mbierlee/poodinis.png?branch=develop)](https://travis-ci.org/mbierlee/poodinis)
|
Master: [![Build Status](https://api.travis-ci.org/mbierlee/poodinis.png?branch=master)](https://travis-ci.org/mbierlee/poodinis) - Dev: [![Build Status](https://api.travis-ci.org/mbierlee/poodinis.png?branch=develop)](https://travis-ci.org/mbierlee/poodinis)
|
||||||
|
|
|
@ -83,7 +83,7 @@ document.getElementById('symbolSearchPane').style.display = 'block';</script>
|
||||||
<p>Mike Bierlee, m.bierlee@lostmoment.com
|
<p>Mike Bierlee, m.bierlee@lostmoment.com
|
||||||
</p>
|
</p>
|
||||||
|
|
||||||
<p>2014-2018 Mike Bierlee
|
<p>2014-2019 Mike Bierlee
|
||||||
</p>
|
</p>
|
||||||
|
|
||||||
<p>This software is licensed under the terms of the MIT license.
|
<p>This software is licensed under the terms of the MIT license.
|
||||||
|
|
|
@ -155,7 +155,7 @@ document.getElementById('symbolSearchPane').style.display = 'block';</script>
|
||||||
<p>Mike Bierlee, m.bierlee@lostmoment.com
|
<p>Mike Bierlee, m.bierlee@lostmoment.com
|
||||||
</p>
|
</p>
|
||||||
|
|
||||||
<p>2014-2018 Mike Bierlee
|
<p>2014-2019 Mike Bierlee
|
||||||
</p>
|
</p>
|
||||||
|
|
||||||
<p>This software is licensed under the terms of the MIT license.
|
<p>This software is licensed under the terms of the MIT license.
|
||||||
|
|
|
@ -101,7 +101,7 @@ document.getElementById('symbolSearchPane').style.display = 'block';</script>
|
||||||
<p>Mike Bierlee, m.bierlee@lostmoment.com
|
<p>Mike Bierlee, m.bierlee@lostmoment.com
|
||||||
</p>
|
</p>
|
||||||
|
|
||||||
<p>2014-2018 Mike Bierlee
|
<p>2014-2019 Mike Bierlee
|
||||||
</p>
|
</p>
|
||||||
|
|
||||||
<p>This software is licensed under the terms of the MIT license.
|
<p>This software is licensed under the terms of the MIT license.
|
||||||
|
|
|
@ -3,7 +3,7 @@
|
||||||
<head>
|
<head>
|
||||||
<meta charset="UTF-8"/>
|
<meta charset="UTF-8"/>
|
||||||
<meta name="viewport" content="width=device-width, initial-scale=1"/>
|
<meta name="viewport" content="width=device-width, initial-scale=1"/>
|
||||||
<title>Struct Autowire</title>
|
<title>Function autowire</title>
|
||||||
<link rel="stylesheet" href="../../css/style.min.css"/>
|
<link rel="stylesheet" href="../../css/style.min.css"/>
|
||||||
<script type="text/javascript" src="../../js/script.min.js"></script>
|
<script type="text/javascript" src="../../js/script.min.js"></script>
|
||||||
</head>
|
</head>
|
||||||
|
@ -73,45 +73,30 @@ document.getElementById('symbolSearchPane').style.display = 'block';</script>
|
||||||
</nav>
|
</nav>
|
||||||
<div id="main-contents">
|
<div id="main-contents">
|
||||||
<div>
|
<div>
|
||||||
<h1>Struct Autowire</h1><p>UDA for annotating class members as candidates for autowiring.
|
<h1>Function autowire</h1><p>Autowires members of a given instance using dependencies registered in the given container.
|
||||||
</p>
|
</p>
|
||||||
<div class="prototype">
|
<div class="prototype">
|
||||||
<code class="lang-d">
|
<code class="lang-d">
|
||||||
<div class="single-prototype">
|
<div class="single-prototype">
|
||||||
<span class="kwd">struct</span> <span class="typ">Autowire</span>(QualifierType)
|
<span class="typ">void</span> <span class="pln">autowire</span>(Type)
|
||||||
<span class="pun">;</span>
|
<span class="pun">(</span>
|
||||||
|
<br/>
|
||||||
|
<span class="kwd">shared</span><span class="pun">(</span><a href="../../poodinis/container/DependencyContainer.html"><span class="typ">DependencyContainer</span></a><span class="pun">)</span> <span class="pln">container</span><span class="pun">,</span>
|
||||||
|
<br/>
|
||||||
|
<span class="typ">Type</span> <span class="pln">instance</span>
|
||||||
|
<br/>
|
||||||
|
<span class="pun">)</span><span class="pun">;</span>
|
||||||
</div>
|
</div>
|
||||||
</code>
|
</code>
|
||||||
</div>
|
</div>
|
||||||
<section><p>Optionally a template parameter can be supplied to specify the type of a qualified class. The qualified type
|
<section><p>All members of the given instance, which are annotated using the "Autowire" UDA, are autowired.
|
||||||
of a concrete class is used to autowire members declared by supertype. If no qualifier is supplied, the type
|
Members can have any visibility (public, private, etc). All members are resolved using the given
|
||||||
of the member is used as qualifier.
|
container. Qualifiers are used to determine the type of class to resolve for any member of instance.
|
||||||
</p>
|
</p>
|
||||||
</section>
|
</section>
|
||||||
|
|
||||||
<section><h2>Examples</h2>
|
<section><h2>See Also</h2>
|
||||||
<p>Annotate member of class to be autowired:
|
<p>Autowire
|
||||||
</p>
|
|
||||||
<pre class="code"><code class="lang-d"><span class="kwd">class </span><span class="typ">Car </span><span class="pun">{
|
|
||||||
@</span><span class="typ">Autowire
|
|
||||||
</span><span class="kwd">public </span><span class="typ">Engine </span><span class="pln">engine</span><span class="pun">;
|
|
||||||
}</span></code></pre>
|
|
||||||
|
|
||||||
<p> Annotate member of class with qualifier:
|
|
||||||
</p>
|
|
||||||
<pre class="code"><code class="lang-d"><span class="kwd">class </span><span class="typ">FuelEngine </span><span class="pun">: </span><span class="typ">Engine </span><span class="pun">{ ... }
|
|
||||||
</span><span class="kwd">class </span><span class="typ">ElectricEngine </span><span class="pun">: </span><span class="typ">Engine </span><span class="pun">{ ... }
|
|
||||||
|
|
||||||
</span><span class="kwd">class </span><span class="typ">HybridCar </span><span class="pun">{
|
|
||||||
@</span><span class="typ">Autowire</span><span class="pun">!</span><span class="typ">FuelEngine
|
|
||||||
</span><span class="kwd">public </span><span class="typ">Engine </span><span class="pln">fuelEngine</span><span class="pun">;
|
|
||||||
|
|
||||||
@</span><span class="typ">Autowire</span><span class="pun">!</span><span class="typ">ElectricEngine
|
|
||||||
</span><span class="kwd">public </span><span class="typ">Engine </span><span class="pln">electricEngine</span><span class="pun">;
|
|
||||||
}</span></code></pre>
|
|
||||||
<p> The members of an instance of "HybridCar" will now be autowired properly, because the autowire mechanism will
|
|
||||||
autowire member "fuelEngine" as if it's of type "FuelEngine". This means that the members of instance "fuelEngine"
|
|
||||||
will also be autowired because the autowire mechanism knows that member "fuelEngine" is an instance of "FuelEngine"
|
|
||||||
</p>
|
</p>
|
||||||
</section>
|
</section>
|
||||||
|
|
||||||
|
@ -121,7 +106,7 @@ document.getElementById('symbolSearchPane').style.display = 'block';</script>
|
||||||
<p>Mike Bierlee, m.bierlee@lostmoment.com
|
<p>Mike Bierlee, m.bierlee@lostmoment.com
|
||||||
</p>
|
</p>
|
||||||
|
|
||||||
<p>2014-2017 Mike Bierlee
|
<p>2014-2019 Mike Bierlee
|
||||||
</p>
|
</p>
|
||||||
|
|
||||||
<p>This software is licensed under the terms of the MIT license.
|
<p>This software is licensed under the terms of the MIT license.
|
||||||
|
|
|
@ -93,7 +93,7 @@ document.getElementById('symbolSearchPane').style.display = 'block';</script>
|
||||||
<p>Mike Bierlee, m.bierlee@lostmoment.com
|
<p>Mike Bierlee, m.bierlee@lostmoment.com
|
||||||
</p>
|
</p>
|
||||||
|
|
||||||
<p>2014-2018 Mike Bierlee
|
<p>2014-2019 Mike Bierlee
|
||||||
</p>
|
</p>
|
||||||
|
|
||||||
<p>This software is licensed under the terms of the MIT license.
|
<p>This software is licensed under the terms of the MIT license.
|
||||||
|
|
|
@ -106,7 +106,7 @@ document.getElementById('symbolSearchPane').style.display = 'block';</script>
|
||||||
<p>Mike Bierlee, m.bierlee@lostmoment.com
|
<p>Mike Bierlee, m.bierlee@lostmoment.com
|
||||||
</p>
|
</p>
|
||||||
|
|
||||||
<p>2014-2018 Mike Bierlee
|
<p>2014-2019 Mike Bierlee
|
||||||
</p>
|
</p>
|
||||||
|
|
||||||
<p>This software is licensed under the terms of the MIT license.
|
<p>This software is licensed under the terms of the MIT license.
|
||||||
|
|
|
@ -104,7 +104,7 @@ document.getElementById('symbolSearchPane').style.display = 'block';</script>
|
||||||
<p>Mike Bierlee, m.bierlee@lostmoment.com
|
<p>Mike Bierlee, m.bierlee@lostmoment.com
|
||||||
</p>
|
</p>
|
||||||
|
|
||||||
<p>2014-2018 Mike Bierlee
|
<p>2014-2019 Mike Bierlee
|
||||||
</p>
|
</p>
|
||||||
|
|
||||||
<p>This software is licensed under the terms of the MIT license.
|
<p>This software is licensed under the terms of the MIT license.
|
||||||
|
|
|
@ -177,7 +177,7 @@ document.getElementById('symbolSearchPane').style.display = 'block';</script>
|
||||||
<p>Mike Bierlee, m.bierlee@lostmoment.com
|
<p>Mike Bierlee, m.bierlee@lostmoment.com
|
||||||
</p>
|
</p>
|
||||||
|
|
||||||
<p>2014-2018 Mike Bierlee
|
<p>2014-2019 Mike Bierlee
|
||||||
</p>
|
</p>
|
||||||
|
|
||||||
<p>This software is licensed under the terms of the MIT license.
|
<p>This software is licensed under the terms of the MIT license.
|
||||||
|
|
|
@ -91,7 +91,7 @@ document.getElementById('symbolSearchPane').style.display = 'block';</script>
|
||||||
<p>Mike Bierlee, m.bierlee@lostmoment.com
|
<p>Mike Bierlee, m.bierlee@lostmoment.com
|
||||||
</p>
|
</p>
|
||||||
|
|
||||||
<p>2014-2018 Mike Bierlee
|
<p>2014-2019 Mike Bierlee
|
||||||
</p>
|
</p>
|
||||||
|
|
||||||
<p>This software is licensed under the terms of the MIT license.
|
<p>This software is licensed under the terms of the MIT license.
|
||||||
|
|
|
@ -207,7 +207,7 @@ document.getElementById('symbolSearchPane').style.display = 'block';</script>
|
||||||
<p>Mike Bierlee, m.bierlee@lostmoment.com
|
<p>Mike Bierlee, m.bierlee@lostmoment.com
|
||||||
</p>
|
</p>
|
||||||
|
|
||||||
<p>2014-2018 Mike Bierlee
|
<p>2014-2019 Mike Bierlee
|
||||||
</p>
|
</p>
|
||||||
|
|
||||||
<p>This software is licensed under the terms of the MIT license.
|
<p>This software is licensed under the terms of the MIT license.
|
||||||
|
|
|
@ -162,7 +162,7 @@ document.getElementById('symbolSearchPane').style.display = 'block';</script>
|
||||||
<p>Mike Bierlee, m.bierlee@lostmoment.com
|
<p>Mike Bierlee, m.bierlee@lostmoment.com
|
||||||
</p>
|
</p>
|
||||||
|
|
||||||
<p>2014-2018 Mike Bierlee
|
<p>2014-2019 Mike Bierlee
|
||||||
</p>
|
</p>
|
||||||
|
|
||||||
<p>This software is licensed under the terms of the MIT license.
|
<p>This software is licensed under the terms of the MIT license.
|
||||||
|
|
|
@ -97,7 +97,7 @@ document.getElementById('symbolSearchPane').style.display = 'block';</script>
|
||||||
<p>Mike Bierlee, m.bierlee@lostmoment.com
|
<p>Mike Bierlee, m.bierlee@lostmoment.com
|
||||||
</p>
|
</p>
|
||||||
|
|
||||||
<p>2014-2018 Mike Bierlee
|
<p>2014-2019 Mike Bierlee
|
||||||
</p>
|
</p>
|
||||||
|
|
||||||
<p>This software is licensed under the terms of the MIT license.
|
<p>This software is licensed under the terms of the MIT license.
|
||||||
|
|
|
@ -189,7 +189,7 @@ document.getElementById('symbolSearchPane').style.display = 'block';</script>
|
||||||
<p>Mike Bierlee, m.bierlee@lostmoment.com
|
<p>Mike Bierlee, m.bierlee@lostmoment.com
|
||||||
</p>
|
</p>
|
||||||
|
|
||||||
<p>2014-2018 Mike Bierlee
|
<p>2014-2019 Mike Bierlee
|
||||||
</p>
|
</p>
|
||||||
|
|
||||||
<p>This software is licensed under the terms of the MIT license.
|
<p>This software is licensed under the terms of the MIT license.
|
||||||
|
|
|
@ -109,7 +109,7 @@ document.getElementById('symbolSearchPane').style.display = 'block';</script>
|
||||||
<p>Mike Bierlee, m.bierlee@lostmoment.com
|
<p>Mike Bierlee, m.bierlee@lostmoment.com
|
||||||
</p>
|
</p>
|
||||||
|
|
||||||
<p>2014-2018 Mike Bierlee
|
<p>2014-2019 Mike Bierlee
|
||||||
</p>
|
</p>
|
||||||
|
|
||||||
<p>This software is licensed under the terms of the MIT license.
|
<p>This software is licensed under the terms of the MIT license.
|
||||||
|
|
|
@ -95,7 +95,7 @@ document.getElementById('symbolSearchPane').style.display = 'block';</script>
|
||||||
<p>Mike Bierlee, m.bierlee@lostmoment.com
|
<p>Mike Bierlee, m.bierlee@lostmoment.com
|
||||||
</p>
|
</p>
|
||||||
|
|
||||||
<p>2014-2018 Mike Bierlee
|
<p>2014-2019 Mike Bierlee
|
||||||
</p>
|
</p>
|
||||||
|
|
||||||
<p>This software is licensed under the terms of the MIT license.
|
<p>This software is licensed under the terms of the MIT license.
|
||||||
|
|
|
@ -95,7 +95,7 @@ document.getElementById('symbolSearchPane').style.display = 'block';</script>
|
||||||
<p>Mike Bierlee, m.bierlee@lostmoment.com
|
<p>Mike Bierlee, m.bierlee@lostmoment.com
|
||||||
</p>
|
</p>
|
||||||
|
|
||||||
<p>2014-2018 Mike Bierlee
|
<p>2014-2019 Mike Bierlee
|
||||||
</p>
|
</p>
|
||||||
|
|
||||||
<p>This software is licensed under the terms of the MIT license.
|
<p>This software is licensed under the terms of the MIT license.
|
||||||
|
|
|
@ -91,7 +91,7 @@ document.getElementById('symbolSearchPane').style.display = 'block';</script>
|
||||||
<p>Mike Bierlee, m.bierlee@lostmoment.com
|
<p>Mike Bierlee, m.bierlee@lostmoment.com
|
||||||
</p>
|
</p>
|
||||||
|
|
||||||
<p>2014-2018 Mike Bierlee
|
<p>2014-2019 Mike Bierlee
|
||||||
</p>
|
</p>
|
||||||
|
|
||||||
<p>This software is licensed under the terms of the MIT license.
|
<p>This software is licensed under the terms of the MIT license.
|
||||||
|
|
|
@ -91,7 +91,7 @@ document.getElementById('symbolSearchPane').style.display = 'block';</script>
|
||||||
<p>Mike Bierlee, m.bierlee@lostmoment.com
|
<p>Mike Bierlee, m.bierlee@lostmoment.com
|
||||||
</p>
|
</p>
|
||||||
|
|
||||||
<p>2014-2018 Mike Bierlee
|
<p>2014-2019 Mike Bierlee
|
||||||
</p>
|
</p>
|
||||||
|
|
||||||
<p>This software is licensed under the terms of the MIT license.
|
<p>This software is licensed under the terms of the MIT license.
|
||||||
|
|
|
@ -96,7 +96,7 @@ document.getElementById('symbolSearchPane').style.display = 'block';</script>
|
||||||
<p>Mike Bierlee, m.bierlee@lostmoment.com
|
<p>Mike Bierlee, m.bierlee@lostmoment.com
|
||||||
</p>
|
</p>
|
||||||
|
|
||||||
<p>2014-2018 Mike Bierlee
|
<p>2014-2019 Mike Bierlee
|
||||||
</p>
|
</p>
|
||||||
|
|
||||||
<p>This software is licensed under the terms of the MIT license.
|
<p>This software is licensed under the terms of the MIT license.
|
||||||
|
|
|
@ -96,7 +96,7 @@ document.getElementById('symbolSearchPane').style.display = 'block';</script>
|
||||||
<p>Mike Bierlee, m.bierlee@lostmoment.com
|
<p>Mike Bierlee, m.bierlee@lostmoment.com
|
||||||
</p>
|
</p>
|
||||||
|
|
||||||
<p>2014-2018 Mike Bierlee
|
<p>2014-2019 Mike Bierlee
|
||||||
</p>
|
</p>
|
||||||
|
|
||||||
<p>This software is licensed under the terms of the MIT license.
|
<p>This software is licensed under the terms of the MIT license.
|
||||||
|
|
|
@ -92,7 +92,7 @@ document.getElementById('symbolSearchPane').style.display = 'block';</script>
|
||||||
<p>Mike Bierlee, m.bierlee@lostmoment.com
|
<p>Mike Bierlee, m.bierlee@lostmoment.com
|
||||||
</p>
|
</p>
|
||||||
|
|
||||||
<p>2014-2018 Mike Bierlee
|
<p>2014-2019 Mike Bierlee
|
||||||
</p>
|
</p>
|
||||||
|
|
||||||
<p>This software is licensed under the terms of the MIT license.
|
<p>This software is licensed under the terms of the MIT license.
|
||||||
|
|
|
@ -107,7 +107,7 @@ document.getElementById('symbolSearchPane').style.display = 'block';</script>
|
||||||
<p>Mike Bierlee, m.bierlee@lostmoment.com
|
<p>Mike Bierlee, m.bierlee@lostmoment.com
|
||||||
</p>
|
</p>
|
||||||
|
|
||||||
<p>2014-2018 Mike Bierlee
|
<p>2014-2019 Mike Bierlee
|
||||||
</p>
|
</p>
|
||||||
|
|
||||||
<p>This software is licensed under the terms of the MIT license.
|
<p>This software is licensed under the terms of the MIT license.
|
||||||
|
|
|
@ -92,7 +92,7 @@ document.getElementById('symbolSearchPane').style.display = 'block';</script>
|
||||||
<p>Mike Bierlee, m.bierlee@lostmoment.com
|
<p>Mike Bierlee, m.bierlee@lostmoment.com
|
||||||
</p>
|
</p>
|
||||||
|
|
||||||
<p>2014-2018 Mike Bierlee
|
<p>2014-2019 Mike Bierlee
|
||||||
</p>
|
</p>
|
||||||
|
|
||||||
<p>This software is licensed under the terms of the MIT license.
|
<p>This software is licensed under the terms of the MIT license.
|
||||||
|
|
|
@ -116,7 +116,7 @@ document.getElementById('symbolSearchPane').style.display = 'block';</script>
|
||||||
<p>Mike Bierlee, m.bierlee@lostmoment.com
|
<p>Mike Bierlee, m.bierlee@lostmoment.com
|
||||||
</p>
|
</p>
|
||||||
|
|
||||||
<p>2014-2018 Mike Bierlee
|
<p>2014-2019 Mike Bierlee
|
||||||
</p>
|
</p>
|
||||||
|
|
||||||
<p>This software is licensed under the terms of the MIT license.
|
<p>This software is licensed under the terms of the MIT license.
|
||||||
|
|
|
@ -142,7 +142,7 @@ document.getElementById('symbolSearchPane').style.display = 'block';</script>
|
||||||
<p>Mike Bierlee, m.bierlee@lostmoment.com
|
<p>Mike Bierlee, m.bierlee@lostmoment.com
|
||||||
</p>
|
</p>
|
||||||
|
|
||||||
<p>2014-2018 Mike Bierlee
|
<p>2014-2019 Mike Bierlee
|
||||||
</p>
|
</p>
|
||||||
|
|
||||||
<p>This software is licensed under the terms of the MIT license.
|
<p>This software is licensed under the terms of the MIT license.
|
||||||
|
|
|
@ -92,7 +92,7 @@ document.getElementById('symbolSearchPane').style.display = 'block';</script>
|
||||||
<p>Mike Bierlee, m.bierlee@lostmoment.com
|
<p>Mike Bierlee, m.bierlee@lostmoment.com
|
||||||
</p>
|
</p>
|
||||||
|
|
||||||
<p>2014-2018 Mike Bierlee
|
<p>2014-2019 Mike Bierlee
|
||||||
</p>
|
</p>
|
||||||
|
|
||||||
<p>This software is licensed under the terms of the MIT license.
|
<p>This software is licensed under the terms of the MIT license.
|
||||||
|
|
|
@ -92,7 +92,7 @@ document.getElementById('symbolSearchPane').style.display = 'block';</script>
|
||||||
<p>Mike Bierlee, m.bierlee@lostmoment.com
|
<p>Mike Bierlee, m.bierlee@lostmoment.com
|
||||||
</p>
|
</p>
|
||||||
|
|
||||||
<p>2014-2018 Mike Bierlee
|
<p>2014-2019 Mike Bierlee
|
||||||
</p>
|
</p>
|
||||||
|
|
||||||
<p>This software is licensed under the terms of the MIT license.
|
<p>This software is licensed under the terms of the MIT license.
|
||||||
|
|
|
@ -92,7 +92,7 @@ document.getElementById('symbolSearchPane').style.display = 'block';</script>
|
||||||
<p>Mike Bierlee, m.bierlee@lostmoment.com
|
<p>Mike Bierlee, m.bierlee@lostmoment.com
|
||||||
</p>
|
</p>
|
||||||
|
|
||||||
<p>2014-2018 Mike Bierlee
|
<p>2014-2019 Mike Bierlee
|
||||||
</p>
|
</p>
|
||||||
|
|
||||||
<p>This software is licensed under the terms of the MIT license.
|
<p>This software is licensed under the terms of the MIT license.
|
||||||
|
|
|
@ -100,7 +100,7 @@ document.getElementById('symbolSearchPane').style.display = 'block';</script>
|
||||||
<p>Mike Bierlee, m.bierlee@lostmoment.com
|
<p>Mike Bierlee, m.bierlee@lostmoment.com
|
||||||
</p>
|
</p>
|
||||||
|
|
||||||
<p>2014-2018 Mike Bierlee
|
<p>2014-2019 Mike Bierlee
|
||||||
</p>
|
</p>
|
||||||
|
|
||||||
<p>This software is licensed under the terms of the MIT license.
|
<p>This software is licensed under the terms of the MIT license.
|
||||||
|
|
|
@ -83,7 +83,7 @@ document.getElementById('symbolSearchPane').style.display = 'block';</script>
|
||||||
<p>Mike Bierlee, m.bierlee@lostmoment.com
|
<p>Mike Bierlee, m.bierlee@lostmoment.com
|
||||||
</p>
|
</p>
|
||||||
|
|
||||||
<p>2014-2018 Mike Bierlee
|
<p>2014-2019 Mike Bierlee
|
||||||
</p>
|
</p>
|
||||||
|
|
||||||
<p>This software is licensed under the terms of the MIT license.
|
<p>This software is licensed under the terms of the MIT license.
|
||||||
|
|
|
@ -102,7 +102,7 @@ document.getElementById('symbolSearchPane').style.display = 'block';</script>
|
||||||
Mike Bierlee (m.bierlee@lostmoment.com)
|
Mike Bierlee (m.bierlee@lostmoment.com)
|
||||||
</p>
|
</p>
|
||||||
|
|
||||||
<p>Copyright Digital Mars 2005 - 2009., Copyright Andrei Alexandrescu 2008-, Jonathan M Davis 2011-., 2014-2018 Mike Bierlee
|
<p>Copyright Digital Mars 2005 - 2009., Copyright Andrei Alexandrescu 2008-, Jonathan M Davis 2011-., 2014-2019 Mike Bierlee
|
||||||
</p>
|
</p>
|
||||||
|
|
||||||
<p>boost.org/LICENSE_1_0.txt, Boost License 1.0
|
<p>boost.org/LICENSE_1_0.txt, Boost License 1.0
|
||||||
|
|
|
@ -121,7 +121,7 @@ document.getElementById('symbolSearchPane').style.display = 'block';</script>
|
||||||
<p>Mike Bierlee, m.bierlee@lostmoment.com
|
<p>Mike Bierlee, m.bierlee@lostmoment.com
|
||||||
</p>
|
</p>
|
||||||
|
|
||||||
<p>2014-2018 Mike Bierlee
|
<p>2014-2019 Mike Bierlee
|
||||||
</p>
|
</p>
|
||||||
|
|
||||||
<p>This software is licensed under the terms of the MIT license.
|
<p>This software is licensed under the terms of the MIT license.
|
||||||
|
|
|
@ -97,7 +97,7 @@ document.getElementById('symbolSearchPane').style.display = 'block';</script>
|
||||||
<p>Mike Bierlee, m.bierlee@lostmoment.com
|
<p>Mike Bierlee, m.bierlee@lostmoment.com
|
||||||
</p>
|
</p>
|
||||||
|
|
||||||
<p>2014-2018 Mike Bierlee
|
<p>2014-2019 Mike Bierlee
|
||||||
</p>
|
</p>
|
||||||
|
|
||||||
<p>This software is licensed under the terms of the MIT license.
|
<p>This software is licensed under the terms of the MIT license.
|
||||||
|
|
|
@ -95,7 +95,7 @@ document.getElementById('symbolSearchPane').style.display = 'block';</script>
|
||||||
<p>Mike Bierlee, m.bierlee@lostmoment.com
|
<p>Mike Bierlee, m.bierlee@lostmoment.com
|
||||||
</p>
|
</p>
|
||||||
|
|
||||||
<p>2014-2018 Mike Bierlee
|
<p>2014-2019 Mike Bierlee
|
||||||
</p>
|
</p>
|
||||||
|
|
||||||
<p>This software is licensed under the terms of the MIT license.
|
<p>This software is licensed under the terms of the MIT license.
|
||||||
|
|
|
@ -98,7 +98,7 @@ document.getElementById('symbolSearchPane').style.display = 'block';</script>
|
||||||
<p>Mike Bierlee, m.bierlee@lostmoment.com
|
<p>Mike Bierlee, m.bierlee@lostmoment.com
|
||||||
</p>
|
</p>
|
||||||
|
|
||||||
<p>2014-2018 Mike Bierlee
|
<p>2014-2019 Mike Bierlee
|
||||||
</p>
|
</p>
|
||||||
|
|
||||||
<p>This software is licensed under the terms of the MIT license.
|
<p>This software is licensed under the terms of the MIT license.
|
||||||
|
|
|
@ -156,7 +156,7 @@ document.getElementById('symbolSearchPane').style.display = 'block';</script>
|
||||||
<p>Mike Bierlee, m.bierlee@lostmoment.com
|
<p>Mike Bierlee, m.bierlee@lostmoment.com
|
||||||
</p>
|
</p>
|
||||||
|
|
||||||
<p>2014-2018 Mike Bierlee
|
<p>2014-2019 Mike Bierlee
|
||||||
</p>
|
</p>
|
||||||
|
|
||||||
<p>This software is licensed under the terms of the MIT license.
|
<p>This software is licensed under the terms of the MIT license.
|
||||||
|
|
|
@ -120,7 +120,7 @@ document.getElementById('symbolSearchPane').style.display = 'block';</script>
|
||||||
<p>Mike Bierlee, m.bierlee@lostmoment.com
|
<p>Mike Bierlee, m.bierlee@lostmoment.com
|
||||||
</p>
|
</p>
|
||||||
|
|
||||||
<p>2014-2018 Mike Bierlee
|
<p>2014-2019 Mike Bierlee
|
||||||
</p>
|
</p>
|
||||||
|
|
||||||
<p>This software is licensed under the terms of the MIT license.
|
<p>This software is licensed under the terms of the MIT license.
|
||||||
|
|
|
@ -106,7 +106,7 @@ document.getElementById('symbolSearchPane').style.display = 'block';</script>
|
||||||
<p>Mike Bierlee, m.bierlee@lostmoment.com
|
<p>Mike Bierlee, m.bierlee@lostmoment.com
|
||||||
</p>
|
</p>
|
||||||
|
|
||||||
<p>2014-2018 Mike Bierlee
|
<p>2014-2019 Mike Bierlee
|
||||||
</p>
|
</p>
|
||||||
|
|
||||||
<p>This software is licensed under the terms of the MIT license.
|
<p>This software is licensed under the terms of the MIT license.
|
||||||
|
|
|
@ -120,7 +120,7 @@ document.getElementById('symbolSearchPane').style.display = 'block';</script>
|
||||||
<p>Mike Bierlee, m.bierlee@lostmoment.com
|
<p>Mike Bierlee, m.bierlee@lostmoment.com
|
||||||
</p>
|
</p>
|
||||||
|
|
||||||
<p>2014-2018 Mike Bierlee
|
<p>2014-2019 Mike Bierlee
|
||||||
</p>
|
</p>
|
||||||
|
|
||||||
<p>This software is licensed under the terms of the MIT license.
|
<p>This software is licensed under the terms of the MIT license.
|
||||||
|
|
|
@ -106,7 +106,7 @@ document.getElementById('symbolSearchPane').style.display = 'block';</script>
|
||||||
<p>Mike Bierlee, m.bierlee@lostmoment.com
|
<p>Mike Bierlee, m.bierlee@lostmoment.com
|
||||||
</p>
|
</p>
|
||||||
|
|
||||||
<p>2014-2018 Mike Bierlee
|
<p>2014-2019 Mike Bierlee
|
||||||
</p>
|
</p>
|
||||||
|
|
||||||
<p>This software is licensed under the terms of the MIT license.
|
<p>This software is licensed under the terms of the MIT license.
|
||||||
|
|
|
@ -92,7 +92,7 @@ document.getElementById('symbolSearchPane').style.display = 'block';</script>
|
||||||
<p>Mike Bierlee, m.bierlee@lostmoment.com
|
<p>Mike Bierlee, m.bierlee@lostmoment.com
|
||||||
</p>
|
</p>
|
||||||
|
|
||||||
<p>2014-2018 Mike Bierlee
|
<p>2014-2019 Mike Bierlee
|
||||||
</p>
|
</p>
|
||||||
|
|
||||||
<p>This software is licensed under the terms of the MIT license.
|
<p>This software is licensed under the terms of the MIT license.
|
||||||
|
|
|
@ -103,7 +103,7 @@ document.getElementById('symbolSearchPane').style.display = 'block';</script>
|
||||||
<p>Mike Bierlee, m.bierlee@lostmoment.com
|
<p>Mike Bierlee, m.bierlee@lostmoment.com
|
||||||
</p>
|
</p>
|
||||||
|
|
||||||
<p>2014-2018 Mike Bierlee
|
<p>2014-2019 Mike Bierlee
|
||||||
</p>
|
</p>
|
||||||
|
|
||||||
<p>This software is licensed under the terms of the MIT license.
|
<p>This software is licensed under the terms of the MIT license.
|
||||||
|
|
|
@ -128,7 +128,7 @@ document.getElementById('symbolSearchPane').style.display = 'block';</script>
|
||||||
<p>Mike Bierlee, m.bierlee@lostmoment.com
|
<p>Mike Bierlee, m.bierlee@lostmoment.com
|
||||||
</p>
|
</p>
|
||||||
|
|
||||||
<p>2014-2018 Mike Bierlee
|
<p>2014-2019 Mike Bierlee
|
||||||
</p>
|
</p>
|
||||||
|
|
||||||
<p>This software is licensed under the terms of the MIT license.
|
<p>This software is licensed under the terms of the MIT license.
|
||||||
|
|
|
@ -92,7 +92,7 @@ document.getElementById('symbolSearchPane').style.display = 'block';</script>
|
||||||
<p>Mike Bierlee, m.bierlee@lostmoment.com
|
<p>Mike Bierlee, m.bierlee@lostmoment.com
|
||||||
</p>
|
</p>
|
||||||
|
|
||||||
<p>2014-2018 Mike Bierlee
|
<p>2014-2019 Mike Bierlee
|
||||||
</p>
|
</p>
|
||||||
|
|
||||||
<p>This software is licensed under the terms of the MIT license.
|
<p>This software is licensed under the terms of the MIT license.
|
||||||
|
|
2
dub.json
2
dub.json
|
@ -3,7 +3,7 @@
|
||||||
"description" : "A dependency injection framework with support for autowiring.",
|
"description" : "A dependency injection framework with support for autowiring.",
|
||||||
"homepage": "http://lostmoment.com/open-source/poodinis",
|
"homepage": "http://lostmoment.com/open-source/poodinis",
|
||||||
"authors": ["Mike Bierlee"],
|
"authors": ["Mike Bierlee"],
|
||||||
"copyright": "Copyright 2014-2018 Mike Bierlee",
|
"copyright": "Copyright 2014-2019 Mike Bierlee",
|
||||||
"license": "MIT",
|
"license": "MIT",
|
||||||
"-ddoxTool": "scod",
|
"-ddoxTool": "scod",
|
||||||
"configurations": [
|
"configurations": [
|
||||||
|
|
|
@ -1,6 +1,6 @@
|
||||||
/**
|
/**
|
||||||
* Poodinis Dependency Injection Framework
|
* Poodinis Dependency Injection Framework
|
||||||
* Copyright 2014-2018 Mike Bierlee
|
* Copyright 2014-2019 Mike Bierlee
|
||||||
* This software is licensed under the terms of the MIT license.
|
* This software is licensed under the terms of the MIT license.
|
||||||
* The full terms of the license can be found in the LICENSE file.
|
* The full terms of the license can be found in the LICENSE file.
|
||||||
*/
|
*/
|
||||||
|
|
|
@ -1,6 +1,6 @@
|
||||||
/**
|
/**
|
||||||
* Poodinis Dependency Injection Framework
|
* Poodinis Dependency Injection Framework
|
||||||
* Copyright 2014-2018 Mike Bierlee
|
* Copyright 2014-2019 Mike Bierlee
|
||||||
* This software is licensed under the terms of the MIT license.
|
* This software is licensed under the terms of the MIT license.
|
||||||
* The full terms of the license can be found in the LICENSE file.
|
* The full terms of the license can be found in the LICENSE file.
|
||||||
*/
|
*/
|
||||||
|
|
|
@ -1,6 +1,6 @@
|
||||||
/**
|
/**
|
||||||
* Poodinis Dependency Injection Framework
|
* Poodinis Dependency Injection Framework
|
||||||
* Copyright 2014-2018 Mike Bierlee
|
* Copyright 2014-2019 Mike Bierlee
|
||||||
* This software is licensed under the terms of the MIT license.
|
* This software is licensed under the terms of the MIT license.
|
||||||
* The full terms of the license can be found in the LICENSE file.
|
* The full terms of the license can be found in the LICENSE file.
|
||||||
*/
|
*/
|
||||||
|
|
|
@ -1,6 +1,6 @@
|
||||||
/**
|
/**
|
||||||
* Poodinis Dependency Injection Framework
|
* Poodinis Dependency Injection Framework
|
||||||
* Copyright 2014-2018 Mike Bierlee
|
* Copyright 2014-2019 Mike Bierlee
|
||||||
* This software is licensed under the terms of the MIT license.
|
* This software is licensed under the terms of the MIT license.
|
||||||
* The full terms of the license can be found in the LICENSE file.
|
* The full terms of the license can be found in the LICENSE file.
|
||||||
*/
|
*/
|
||||||
|
|
|
@ -1,6 +1,6 @@
|
||||||
/**
|
/**
|
||||||
* Poodinis Dependency Injection Framework
|
* Poodinis Dependency Injection Framework
|
||||||
* Copyright 2014-2018 Mike Bierlee
|
* Copyright 2014-2019 Mike Bierlee
|
||||||
* This software is licensed under the terms of the MIT license.
|
* This software is licensed under the terms of the MIT license.
|
||||||
* The full terms of the license can be found in the LICENSE file.
|
* The full terms of the license can be found in the LICENSE file.
|
||||||
*/
|
*/
|
||||||
|
|
|
@ -1,6 +1,6 @@
|
||||||
/**
|
/**
|
||||||
* Poodinis Dependency Injection Framework
|
* Poodinis Dependency Injection Framework
|
||||||
* Copyright 2014-2018 Mike Bierlee
|
* Copyright 2014-2019 Mike Bierlee
|
||||||
* This software is licensed under the terms of the MIT license.
|
* This software is licensed under the terms of the MIT license.
|
||||||
* The full terms of the license can be found in the LICENSE file.
|
* The full terms of the license can be found in the LICENSE file.
|
||||||
*/
|
*/
|
||||||
|
|
|
@ -1,6 +1,6 @@
|
||||||
/**
|
/**
|
||||||
* Poodinis Dependency Injection Framework
|
* Poodinis Dependency Injection Framework
|
||||||
* Copyright 2014-2018 Mike Bierlee
|
* Copyright 2014-2019 Mike Bierlee
|
||||||
* This software is licensed under the terms of the MIT license.
|
* This software is licensed under the terms of the MIT license.
|
||||||
* The full terms of the license can be found in the LICENSE file.
|
* The full terms of the license can be found in the LICENSE file.
|
||||||
*/
|
*/
|
||||||
|
|
|
@ -1,6 +1,6 @@
|
||||||
/**
|
/**
|
||||||
* Poodinis Dependency Injection Framework
|
* Poodinis Dependency Injection Framework
|
||||||
* Copyright 2014-2018 Mike Bierlee
|
* Copyright 2014-2019 Mike Bierlee
|
||||||
* This software is licensed under the terms of the MIT license.
|
* This software is licensed under the terms of the MIT license.
|
||||||
* The full terms of the license can be found in the LICENSE file.
|
* The full terms of the license can be found in the LICENSE file.
|
||||||
*/
|
*/
|
||||||
|
|
|
@ -1,6 +1,6 @@
|
||||||
/**
|
/**
|
||||||
* Poodinis Dependency Injection Framework
|
* Poodinis Dependency Injection Framework
|
||||||
* Copyright 2014-2018 Mike Bierlee
|
* Copyright 2014-2019 Mike Bierlee
|
||||||
* This software is licensed under the terms of the MIT license.
|
* This software is licensed under the terms of the MIT license.
|
||||||
* The full terms of the license can be found in the LICENSE file.
|
* The full terms of the license can be found in the LICENSE file.
|
||||||
*/
|
*/
|
||||||
|
|
|
@ -9,7 +9,7 @@
|
||||||
*
|
*
|
||||||
* Authors:
|
* Authors:
|
||||||
* Mike Bierlee, m.bierlee@lostmoment.com
|
* Mike Bierlee, m.bierlee@lostmoment.com
|
||||||
* Copyright: 2014-2018 Mike Bierlee
|
* Copyright: 2014-2019 Mike Bierlee
|
||||||
* License:
|
* License:
|
||||||
* This software is licensed under the terms of the MIT license.
|
* This software is licensed under the terms of the MIT license.
|
||||||
* The full terms of the license can be found in the LICENSE file.
|
* The full terms of the license can be found in the LICENSE file.
|
||||||
|
|
|
@ -5,7 +5,7 @@
|
||||||
*
|
*
|
||||||
* Authors:
|
* Authors:
|
||||||
* Mike Bierlee, m.bierlee@lostmoment.com
|
* Mike Bierlee, m.bierlee@lostmoment.com
|
||||||
* Copyright: 2014-2018 Mike Bierlee
|
* Copyright: 2014-2019 Mike Bierlee
|
||||||
* License:
|
* License:
|
||||||
* This software is licensed under the terms of the MIT license.
|
* This software is licensed under the terms of the MIT license.
|
||||||
* The full terms of the license can be found in the LICENSE file.
|
* The full terms of the license can be found in the LICENSE file.
|
||||||
|
|
|
@ -5,7 +5,7 @@
|
||||||
*
|
*
|
||||||
* Authors:
|
* Authors:
|
||||||
* Mike Bierlee, m.bierlee@lostmoment.com
|
* Mike Bierlee, m.bierlee@lostmoment.com
|
||||||
* Copyright: 2014-2018 Mike Bierlee
|
* Copyright: 2014-2019 Mike Bierlee
|
||||||
* License:
|
* License:
|
||||||
* This software is licensed under the terms of the MIT license.
|
* This software is licensed under the terms of the MIT license.
|
||||||
* The full terms of the license can be found in the LICENSE file.
|
* The full terms of the license can be found in the LICENSE file.
|
||||||
|
|
|
@ -3,7 +3,7 @@
|
||||||
*
|
*
|
||||||
* Authors:
|
* Authors:
|
||||||
* Mike Bierlee, m.bierlee@lostmoment.com
|
* Mike Bierlee, m.bierlee@lostmoment.com
|
||||||
* Copyright: 2014-2018 Mike Bierlee
|
* Copyright: 2014-2019 Mike Bierlee
|
||||||
* License:
|
* License:
|
||||||
* This software is licensed under the terms of the MIT license.
|
* This software is licensed under the terms of the MIT license.
|
||||||
* The full terms of the license can be found in the LICENSE file.
|
* The full terms of the license can be found in the LICENSE file.
|
||||||
|
|
|
@ -3,7 +3,7 @@
|
||||||
*
|
*
|
||||||
* Authors:
|
* Authors:
|
||||||
* Mike Bierlee, m.bierlee@lostmoment.com
|
* Mike Bierlee, m.bierlee@lostmoment.com
|
||||||
* Copyright: 2014-2018 Mike Bierlee
|
* Copyright: 2014-2019 Mike Bierlee
|
||||||
* License:
|
* License:
|
||||||
* This software is licensed under the terms of the MIT license.
|
* This software is licensed under the terms of the MIT license.
|
||||||
* The full terms of the license can be found in the LICENSE file.
|
* The full terms of the license can be found in the LICENSE file.
|
||||||
|
|
|
@ -3,7 +3,7 @@
|
||||||
*
|
*
|
||||||
* Authors:
|
* Authors:
|
||||||
* Mike Bierlee, m.bierlee@lostmoment.com
|
* Mike Bierlee, m.bierlee@lostmoment.com
|
||||||
* Copyright: 2014-2018 Mike Bierlee
|
* Copyright: 2014-2019 Mike Bierlee
|
||||||
* License:
|
* License:
|
||||||
* This software is licensed under the terms of the MIT license.
|
* This software is licensed under the terms of the MIT license.
|
||||||
* The full terms of the license can be found in the LICENSE file.
|
* The full terms of the license can be found in the LICENSE file.
|
||||||
|
|
|
@ -19,7 +19,7 @@
|
||||||
* Kenji Hara,
|
* Kenji Hara,
|
||||||
* Shoichi Kato,
|
* Shoichi Kato,
|
||||||
* Mike Bierlee (m.bierlee@lostmoment.com)
|
* Mike Bierlee (m.bierlee@lostmoment.com)
|
||||||
* Copyright: Copyright Digital Mars 2005 - 2009., Copyright Andrei Alexandrescu 2008-, Jonathan M Davis 2011-., 2014-2018 Mike Bierlee
|
* Copyright: Copyright Digital Mars 2005 - 2009., Copyright Andrei Alexandrescu 2008-, Jonathan M Davis 2011-., 2014-2019 Mike Bierlee
|
||||||
* License: $(HTTP boost.org/LICENSE_1_0.txt, Boost License 1.0)
|
* License: $(HTTP boost.org/LICENSE_1_0.txt, Boost License 1.0)
|
||||||
*/
|
*/
|
||||||
|
|
||||||
|
|
|
@ -5,7 +5,7 @@
|
||||||
*
|
*
|
||||||
* Authors:
|
* Authors:
|
||||||
* Mike Bierlee, m.bierlee@lostmoment.com
|
* Mike Bierlee, m.bierlee@lostmoment.com
|
||||||
* Copyright: 2014-2018 Mike Bierlee
|
* Copyright: 2014-2019 Mike Bierlee
|
||||||
* License:
|
* License:
|
||||||
* This software is licensed under the terms of the MIT license.
|
* This software is licensed under the terms of the MIT license.
|
||||||
* The full terms of the license can be found in the LICENSE file.
|
* The full terms of the license can be found in the LICENSE file.
|
||||||
|
|
|
@ -4,7 +4,7 @@
|
||||||
*
|
*
|
||||||
* Authors:
|
* Authors:
|
||||||
* Mike Bierlee, m.bierlee@lostmoment.com
|
* Mike Bierlee, m.bierlee@lostmoment.com
|
||||||
* Copyright: 2014-2018 Mike Bierlee
|
* Copyright: 2014-2019 Mike Bierlee
|
||||||
* License:
|
* License:
|
||||||
* This software is licensed under the terms of the MIT license.
|
* This software is licensed under the terms of the MIT license.
|
||||||
* The full terms of the license can be found in the LICENSE file.
|
* The full terms of the license can be found in the LICENSE file.
|
||||||
|
|
|
@ -1,6 +1,6 @@
|
||||||
/**
|
/**
|
||||||
* Poodinis Dependency Injection Framework
|
* Poodinis Dependency Injection Framework
|
||||||
* Copyright 2014-2018 Mike Bierlee
|
* Copyright 2014-2019 Mike Bierlee
|
||||||
* This software is licensed under the terms of the MIT license.
|
* This software is licensed under the terms of the MIT license.
|
||||||
* The full terms of the license can be found in the LICENSE file.
|
* The full terms of the license can be found in the LICENSE file.
|
||||||
*/
|
*/
|
||||||
|
|
|
@ -1,6 +1,6 @@
|
||||||
/**
|
/**
|
||||||
* Poodinis Dependency Injection Framework
|
* Poodinis Dependency Injection Framework
|
||||||
* Copyright 2014-2018 Mike Bierlee
|
* Copyright 2014-2019 Mike Bierlee
|
||||||
* This software is licensed under the terms of the MIT license.
|
* This software is licensed under the terms of the MIT license.
|
||||||
* The full terms of the license can be found in the LICENSE file.
|
* The full terms of the license can be found in the LICENSE file.
|
||||||
*/
|
*/
|
||||||
|
|
|
@ -1,6 +1,6 @@
|
||||||
/**
|
/**
|
||||||
* Poodinis Dependency Injection Framework
|
* Poodinis Dependency Injection Framework
|
||||||
* Copyright 2014-2018 Mike Bierlee
|
* Copyright 2014-2019 Mike Bierlee
|
||||||
* This software is licensed under the terms of the MIT license.
|
* This software is licensed under the terms of the MIT license.
|
||||||
* The full terms of the license can be found in the LICENSE file.
|
* The full terms of the license can be found in the LICENSE file.
|
||||||
*/
|
*/
|
||||||
|
|
|
@ -1,6 +1,6 @@
|
||||||
/**
|
/**
|
||||||
* Poodinis Dependency Injection Framework
|
* Poodinis Dependency Injection Framework
|
||||||
* Copyright 2014-2018 Mike Bierlee
|
* Copyright 2014-2019 Mike Bierlee
|
||||||
* This software is licensed under the terms of the MIT license.
|
* This software is licensed under the terms of the MIT license.
|
||||||
* The full terms of the license can be found in the LICENSE file.
|
* The full terms of the license can be found in the LICENSE file.
|
||||||
*/
|
*/
|
||||||
|
|
|
@ -1,6 +1,6 @@
|
||||||
/**
|
/**
|
||||||
* Poodinis Dependency Injection Framework
|
* Poodinis Dependency Injection Framework
|
||||||
* Copyright 2014-2018 Mike Bierlee
|
* Copyright 2014-2019 Mike Bierlee
|
||||||
* This software is licensed under the terms of the MIT license.
|
* This software is licensed under the terms of the MIT license.
|
||||||
* The full terms of the license can be found in the LICENSE file.
|
* The full terms of the license can be found in the LICENSE file.
|
||||||
*/
|
*/
|
||||||
|
|
|
@ -1,6 +1,6 @@
|
||||||
/**
|
/**
|
||||||
* Poodinis Dependency Injection Framework
|
* Poodinis Dependency Injection Framework
|
||||||
* Copyright 2014-2018 Mike Bierlee
|
* Copyright 2014-2019 Mike Bierlee
|
||||||
* This software is licensed under the terms of the MIT license.
|
* This software is licensed under the terms of the MIT license.
|
||||||
* The full terms of the license can be found in the LICENSE file.
|
* The full terms of the license can be found in the LICENSE file.
|
||||||
*/
|
*/
|
||||||
|
|
|
@ -1,6 +1,6 @@
|
||||||
/**
|
/**
|
||||||
* Poodinis Dependency Injection Framework
|
* Poodinis Dependency Injection Framework
|
||||||
* Copyright 2014-2018 Mike Bierlee
|
* Copyright 2014-2019 Mike Bierlee
|
||||||
* This software is licensed under the terms of the MIT license.
|
* This software is licensed under the terms of the MIT license.
|
||||||
* The full terms of the license can be found in the LICENSE file.
|
* The full terms of the license can be found in the LICENSE file.
|
||||||
*/
|
*/
|
||||||
|
|
|
@ -1,6 +1,6 @@
|
||||||
/**
|
/**
|
||||||
* Poodinis Dependency Injection Framework
|
* Poodinis Dependency Injection Framework
|
||||||
* Copyright 2014-2018 Mike Bierlee
|
* Copyright 2014-2019 Mike Bierlee
|
||||||
* This software is licensed under the terms of the MIT license.
|
* This software is licensed under the terms of the MIT license.
|
||||||
* The full terms of the license can be found in the LICENSE file.
|
* The full terms of the license can be found in the LICENSE file.
|
||||||
*/
|
*/
|
||||||
|
|
|
@ -1,6 +1,6 @@
|
||||||
/**
|
/**
|
||||||
* Poodinis Dependency Injection Framework
|
* Poodinis Dependency Injection Framework
|
||||||
* Copyright 2014-2018 Mike Bierlee
|
* Copyright 2014-2019 Mike Bierlee
|
||||||
* This software is licensed under the terms of the MIT license.
|
* This software is licensed under the terms of the MIT license.
|
||||||
* The full terms of the license can be found in the LICENSE file.
|
* The full terms of the license can be found in the LICENSE file.
|
||||||
*/
|
*/
|
||||||
|
|
Loading…
Reference in a new issue