Update copyrights

This commit is contained in:
Mike Bierlee 2019-07-14 12:40:16 +03:00
parent ba38bf7952
commit 343dd65fdf
74 changed files with 89 additions and 104 deletions

View file

@ -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
of this software and associated documentation files (the "Software"), to deal

View file

@ -1,7 +1,7 @@
Poodinis Dependency Injection Framework
=======================================
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)
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)

View file

@ -83,7 +83,7 @@ document.getElementById('symbolSearchPane').style.display = 'block';</script>
<p>Mike Bierlee, m.bierlee@lostmoment.com
</p>
<p>2014-2018 Mike Bierlee
<p>2014-2019 Mike Bierlee
</p>
<p>This software is licensed under the terms of the MIT license.

View file

@ -155,7 +155,7 @@ document.getElementById('symbolSearchPane').style.display = 'block';</script>
<p>Mike Bierlee, m.bierlee@lostmoment.com
</p>
<p>2014-2018 Mike Bierlee
<p>2014-2019 Mike Bierlee
</p>
<p>This software is licensed under the terms of the MIT license.

View file

@ -101,7 +101,7 @@ document.getElementById('symbolSearchPane').style.display = 'block';</script>
<p>Mike Bierlee, m.bierlee@lostmoment.com
</p>
<p>2014-2018 Mike Bierlee
<p>2014-2019 Mike Bierlee
</p>
<p>This software is licensed under the terms of the MIT license.

View file

@ -3,7 +3,7 @@
<head>
<meta charset="UTF-8"/>
<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"/>
<script type="text/javascript" src="../../js/script.min.js"></script>
</head>
@ -73,45 +73,30 @@ document.getElementById('symbolSearchPane').style.display = 'block';</script>
</nav>
<div id="main-contents">
<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>
<div class="prototype">
<code class="lang-d">
<div class="single-prototype">
<span class="kwd">struct</span> <span class="typ">Autowire</span>(QualifierType)
<span class="pun">;</span>
<span class="typ">void</span> <span class="pln">autowire</span>(Type)
<span class="pun">(</span>
<br/>
&nbsp;&nbsp;<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/>
&nbsp;&nbsp;<span class="typ">Type</span> <span class="pln">instance</span>
<br/>
<span class="pun">)</span><span class="pun">;</span>
</div>
</code>
</div>
<section><p>Optionally a template parameter can be supplied to specify the type of a qualified class. The qualified type
of a concrete class is used to autowire members declared by supertype. If no qualifier is supplied, the type
of the member is used as qualifier.
<section><p>All members of the given instance, which are annotated using the "Autowire" UDA, are autowired.
Members can have any visibility (public, private, etc). All members are resolved using the given
container. Qualifiers are used to determine the type of class to resolve for any member of instance.
</p>
</section>
<section><h2>Examples</h2>
<p>Annotate member of class to be autowired:
</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"
<section><h2>See Also</h2>
<p>Autowire
</p>
</section>
@ -121,7 +106,7 @@ document.getElementById('symbolSearchPane').style.display = 'block';</script>
<p>Mike Bierlee, m.bierlee@lostmoment.com
</p>
<p>2014-2017 Mike Bierlee
<p>2014-2019 Mike Bierlee
</p>
<p>This software is licensed under the terms of the MIT license.

View file

@ -93,7 +93,7 @@ document.getElementById('symbolSearchPane').style.display = 'block';</script>
<p>Mike Bierlee, m.bierlee@lostmoment.com
</p>
<p>2014-2018 Mike Bierlee
<p>2014-2019 Mike Bierlee
</p>
<p>This software is licensed under the terms of the MIT license.

View file

@ -106,7 +106,7 @@ document.getElementById('symbolSearchPane').style.display = 'block';</script>
<p>Mike Bierlee, m.bierlee@lostmoment.com
</p>
<p>2014-2018 Mike Bierlee
<p>2014-2019 Mike Bierlee
</p>
<p>This software is licensed under the terms of the MIT license.

View file

@ -104,7 +104,7 @@ document.getElementById('symbolSearchPane').style.display = 'block';</script>
<p>Mike Bierlee, m.bierlee@lostmoment.com
</p>
<p>2014-2018 Mike Bierlee
<p>2014-2019 Mike Bierlee
</p>
<p>This software is licensed under the terms of the MIT license.

View file

@ -177,7 +177,7 @@ document.getElementById('symbolSearchPane').style.display = 'block';</script>
<p>Mike Bierlee, m.bierlee@lostmoment.com
</p>
<p>2014-2018 Mike Bierlee
<p>2014-2019 Mike Bierlee
</p>
<p>This software is licensed under the terms of the MIT license.

View file

@ -91,7 +91,7 @@ document.getElementById('symbolSearchPane').style.display = 'block';</script>
<p>Mike Bierlee, m.bierlee@lostmoment.com
</p>
<p>2014-2018 Mike Bierlee
<p>2014-2019 Mike Bierlee
</p>
<p>This software is licensed under the terms of the MIT license.

View file

@ -207,7 +207,7 @@ document.getElementById('symbolSearchPane').style.display = 'block';</script>
<p>Mike Bierlee, m.bierlee@lostmoment.com
</p>
<p>2014-2018 Mike Bierlee
<p>2014-2019 Mike Bierlee
</p>
<p>This software is licensed under the terms of the MIT license.

View file

@ -162,7 +162,7 @@ document.getElementById('symbolSearchPane').style.display = 'block';</script>
<p>Mike Bierlee, m.bierlee@lostmoment.com
</p>
<p>2014-2018 Mike Bierlee
<p>2014-2019 Mike Bierlee
</p>
<p>This software is licensed under the terms of the MIT license.

View file

@ -97,7 +97,7 @@ document.getElementById('symbolSearchPane').style.display = 'block';</script>
<p>Mike Bierlee, m.bierlee@lostmoment.com
</p>
<p>2014-2018 Mike Bierlee
<p>2014-2019 Mike Bierlee
</p>
<p>This software is licensed under the terms of the MIT license.

View file

@ -189,7 +189,7 @@ document.getElementById('symbolSearchPane').style.display = 'block';</script>
<p>Mike Bierlee, m.bierlee@lostmoment.com
</p>
<p>2014-2018 Mike Bierlee
<p>2014-2019 Mike Bierlee
</p>
<p>This software is licensed under the terms of the MIT license.

View file

@ -109,7 +109,7 @@ document.getElementById('symbolSearchPane').style.display = 'block';</script>
<p>Mike Bierlee, m.bierlee@lostmoment.com
</p>
<p>2014-2018 Mike Bierlee
<p>2014-2019 Mike Bierlee
</p>
<p>This software is licensed under the terms of the MIT license.

View file

@ -95,7 +95,7 @@ document.getElementById('symbolSearchPane').style.display = 'block';</script>
<p>Mike Bierlee, m.bierlee@lostmoment.com
</p>
<p>2014-2018 Mike Bierlee
<p>2014-2019 Mike Bierlee
</p>
<p>This software is licensed under the terms of the MIT license.

View file

@ -95,7 +95,7 @@ document.getElementById('symbolSearchPane').style.display = 'block';</script>
<p>Mike Bierlee, m.bierlee@lostmoment.com
</p>
<p>2014-2018 Mike Bierlee
<p>2014-2019 Mike Bierlee
</p>
<p>This software is licensed under the terms of the MIT license.

View file

@ -91,7 +91,7 @@ document.getElementById('symbolSearchPane').style.display = 'block';</script>
<p>Mike Bierlee, m.bierlee@lostmoment.com
</p>
<p>2014-2018 Mike Bierlee
<p>2014-2019 Mike Bierlee
</p>
<p>This software is licensed under the terms of the MIT license.

View file

@ -91,7 +91,7 @@ document.getElementById('symbolSearchPane').style.display = 'block';</script>
<p>Mike Bierlee, m.bierlee@lostmoment.com
</p>
<p>2014-2018 Mike Bierlee
<p>2014-2019 Mike Bierlee
</p>
<p>This software is licensed under the terms of the MIT license.

View file

@ -96,7 +96,7 @@ document.getElementById('symbolSearchPane').style.display = 'block';</script>
<p>Mike Bierlee, m.bierlee@lostmoment.com
</p>
<p>2014-2018 Mike Bierlee
<p>2014-2019 Mike Bierlee
</p>
<p>This software is licensed under the terms of the MIT license.

View file

@ -96,7 +96,7 @@ document.getElementById('symbolSearchPane').style.display = 'block';</script>
<p>Mike Bierlee, m.bierlee@lostmoment.com
</p>
<p>2014-2018 Mike Bierlee
<p>2014-2019 Mike Bierlee
</p>
<p>This software is licensed under the terms of the MIT license.

View file

@ -92,7 +92,7 @@ document.getElementById('symbolSearchPane').style.display = 'block';</script>
<p>Mike Bierlee, m.bierlee@lostmoment.com
</p>
<p>2014-2018 Mike Bierlee
<p>2014-2019 Mike Bierlee
</p>
<p>This software is licensed under the terms of the MIT license.

View file

@ -107,7 +107,7 @@ document.getElementById('symbolSearchPane').style.display = 'block';</script>
<p>Mike Bierlee, m.bierlee@lostmoment.com
</p>
<p>2014-2018 Mike Bierlee
<p>2014-2019 Mike Bierlee
</p>
<p>This software is licensed under the terms of the MIT license.

View file

@ -92,7 +92,7 @@ document.getElementById('symbolSearchPane').style.display = 'block';</script>
<p>Mike Bierlee, m.bierlee@lostmoment.com
</p>
<p>2014-2018 Mike Bierlee
<p>2014-2019 Mike Bierlee
</p>
<p>This software is licensed under the terms of the MIT license.

View file

@ -116,7 +116,7 @@ document.getElementById('symbolSearchPane').style.display = 'block';</script>
<p>Mike Bierlee, m.bierlee@lostmoment.com
</p>
<p>2014-2018 Mike Bierlee
<p>2014-2019 Mike Bierlee
</p>
<p>This software is licensed under the terms of the MIT license.

View file

@ -142,7 +142,7 @@ document.getElementById('symbolSearchPane').style.display = 'block';</script>
<p>Mike Bierlee, m.bierlee@lostmoment.com
</p>
<p>2014-2018 Mike Bierlee
<p>2014-2019 Mike Bierlee
</p>
<p>This software is licensed under the terms of the MIT license.

View file

@ -92,7 +92,7 @@ document.getElementById('symbolSearchPane').style.display = 'block';</script>
<p>Mike Bierlee, m.bierlee@lostmoment.com
</p>
<p>2014-2018 Mike Bierlee
<p>2014-2019 Mike Bierlee
</p>
<p>This software is licensed under the terms of the MIT license.

View file

@ -92,7 +92,7 @@ document.getElementById('symbolSearchPane').style.display = 'block';</script>
<p>Mike Bierlee, m.bierlee@lostmoment.com
</p>
<p>2014-2018 Mike Bierlee
<p>2014-2019 Mike Bierlee
</p>
<p>This software is licensed under the terms of the MIT license.

View file

@ -92,7 +92,7 @@ document.getElementById('symbolSearchPane').style.display = 'block';</script>
<p>Mike Bierlee, m.bierlee@lostmoment.com
</p>
<p>2014-2018 Mike Bierlee
<p>2014-2019 Mike Bierlee
</p>
<p>This software is licensed under the terms of the MIT license.

View file

@ -100,7 +100,7 @@ document.getElementById('symbolSearchPane').style.display = 'block';</script>
<p>Mike Bierlee, m.bierlee@lostmoment.com
</p>
<p>2014-2018 Mike Bierlee
<p>2014-2019 Mike Bierlee
</p>
<p>This software is licensed under the terms of the MIT license.

View file

@ -83,7 +83,7 @@ document.getElementById('symbolSearchPane').style.display = 'block';</script>
<p>Mike Bierlee, m.bierlee@lostmoment.com
</p>
<p>2014-2018 Mike Bierlee
<p>2014-2019 Mike Bierlee
</p>
<p>This software is licensed under the terms of the MIT license.

View file

@ -102,7 +102,7 @@ document.getElementById('symbolSearchPane').style.display = 'block';</script>
Mike Bierlee (m.bierlee@lostmoment.com)
</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>boost.org/LICENSE_1_0.txt, Boost License 1.0

View file

@ -121,7 +121,7 @@ document.getElementById('symbolSearchPane').style.display = 'block';</script>
<p>Mike Bierlee, m.bierlee@lostmoment.com
</p>
<p>2014-2018 Mike Bierlee
<p>2014-2019 Mike Bierlee
</p>
<p>This software is licensed under the terms of the MIT license.

View file

@ -97,7 +97,7 @@ document.getElementById('symbolSearchPane').style.display = 'block';</script>
<p>Mike Bierlee, m.bierlee@lostmoment.com
</p>
<p>2014-2018 Mike Bierlee
<p>2014-2019 Mike Bierlee
</p>
<p>This software is licensed under the terms of the MIT license.

View file

@ -95,7 +95,7 @@ document.getElementById('symbolSearchPane').style.display = 'block';</script>
<p>Mike Bierlee, m.bierlee@lostmoment.com
</p>
<p>2014-2018 Mike Bierlee
<p>2014-2019 Mike Bierlee
</p>
<p>This software is licensed under the terms of the MIT license.

View file

@ -98,7 +98,7 @@ document.getElementById('symbolSearchPane').style.display = 'block';</script>
<p>Mike Bierlee, m.bierlee@lostmoment.com
</p>
<p>2014-2018 Mike Bierlee
<p>2014-2019 Mike Bierlee
</p>
<p>This software is licensed under the terms of the MIT license.

View file

@ -156,7 +156,7 @@ document.getElementById('symbolSearchPane').style.display = 'block';</script>
<p>Mike Bierlee, m.bierlee@lostmoment.com
</p>
<p>2014-2018 Mike Bierlee
<p>2014-2019 Mike Bierlee
</p>
<p>This software is licensed under the terms of the MIT license.

View file

@ -120,7 +120,7 @@ document.getElementById('symbolSearchPane').style.display = 'block';</script>
<p>Mike Bierlee, m.bierlee@lostmoment.com
</p>
<p>2014-2018 Mike Bierlee
<p>2014-2019 Mike Bierlee
</p>
<p>This software is licensed under the terms of the MIT license.

View file

@ -106,7 +106,7 @@ document.getElementById('symbolSearchPane').style.display = 'block';</script>
<p>Mike Bierlee, m.bierlee@lostmoment.com
</p>
<p>2014-2018 Mike Bierlee
<p>2014-2019 Mike Bierlee
</p>
<p>This software is licensed under the terms of the MIT license.

View file

@ -120,7 +120,7 @@ document.getElementById('symbolSearchPane').style.display = 'block';</script>
<p>Mike Bierlee, m.bierlee@lostmoment.com
</p>
<p>2014-2018 Mike Bierlee
<p>2014-2019 Mike Bierlee
</p>
<p>This software is licensed under the terms of the MIT license.

View file

@ -106,7 +106,7 @@ document.getElementById('symbolSearchPane').style.display = 'block';</script>
<p>Mike Bierlee, m.bierlee@lostmoment.com
</p>
<p>2014-2018 Mike Bierlee
<p>2014-2019 Mike Bierlee
</p>
<p>This software is licensed under the terms of the MIT license.

View file

@ -92,7 +92,7 @@ document.getElementById('symbolSearchPane').style.display = 'block';</script>
<p>Mike Bierlee, m.bierlee@lostmoment.com
</p>
<p>2014-2018 Mike Bierlee
<p>2014-2019 Mike Bierlee
</p>
<p>This software is licensed under the terms of the MIT license.

View file

@ -103,7 +103,7 @@ document.getElementById('symbolSearchPane').style.display = 'block';</script>
<p>Mike Bierlee, m.bierlee@lostmoment.com
</p>
<p>2014-2018 Mike Bierlee
<p>2014-2019 Mike Bierlee
</p>
<p>This software is licensed under the terms of the MIT license.

View file

@ -128,7 +128,7 @@ document.getElementById('symbolSearchPane').style.display = 'block';</script>
<p>Mike Bierlee, m.bierlee@lostmoment.com
</p>
<p>2014-2018 Mike Bierlee
<p>2014-2019 Mike Bierlee
</p>
<p>This software is licensed under the terms of the MIT license.

View file

@ -92,7 +92,7 @@ document.getElementById('symbolSearchPane').style.display = 'block';</script>
<p>Mike Bierlee, m.bierlee@lostmoment.com
</p>
<p>2014-2018 Mike Bierlee
<p>2014-2019 Mike Bierlee
</p>
<p>This software is licensed under the terms of the MIT license.

View file

@ -3,7 +3,7 @@
"description" : "A dependency injection framework with support for autowiring.",
"homepage": "http://lostmoment.com/open-source/poodinis",
"authors": ["Mike Bierlee"],
"copyright": "Copyright 2014-2018 Mike Bierlee",
"copyright": "Copyright 2014-2019 Mike Bierlee",
"license": "MIT",
"-ddoxTool": "scod",
"configurations": [

View file

@ -1,6 +1,6 @@
/**
* 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.
* The full terms of the license can be found in the LICENSE file.
*/

View file

@ -1,6 +1,6 @@
/**
* 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.
* The full terms of the license can be found in the LICENSE file.
*/

View file

@ -1,6 +1,6 @@
/**
* 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.
* The full terms of the license can be found in the LICENSE file.
*/

View file

@ -1,6 +1,6 @@
/**
* 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.
* The full terms of the license can be found in the LICENSE file.
*/

View file

@ -1,6 +1,6 @@
/**
* 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.
* The full terms of the license can be found in the LICENSE file.
*/

View file

@ -1,6 +1,6 @@
/**
* 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.
* The full terms of the license can be found in the LICENSE file.
*/

View file

@ -1,6 +1,6 @@
/**
* 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.
* The full terms of the license can be found in the LICENSE file.
*/

View file

@ -1,6 +1,6 @@
/**
* 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.
* The full terms of the license can be found in the LICENSE file.
*/

View file

@ -1,6 +1,6 @@
/**
* 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.
* The full terms of the license can be found in the LICENSE file.
*/

View file

@ -9,7 +9,7 @@
*
* Authors:
* Mike Bierlee, m.bierlee@lostmoment.com
* Copyright: 2014-2018 Mike Bierlee
* Copyright: 2014-2019 Mike Bierlee
* 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.

View file

@ -5,7 +5,7 @@
*
* Authors:
* Mike Bierlee, m.bierlee@lostmoment.com
* Copyright: 2014-2018 Mike Bierlee
* Copyright: 2014-2019 Mike Bierlee
* 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.

View file

@ -5,7 +5,7 @@
*
* Authors:
* Mike Bierlee, m.bierlee@lostmoment.com
* Copyright: 2014-2018 Mike Bierlee
* Copyright: 2014-2019 Mike Bierlee
* 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.

View file

@ -3,7 +3,7 @@
*
* Authors:
* Mike Bierlee, m.bierlee@lostmoment.com
* Copyright: 2014-2018 Mike Bierlee
* Copyright: 2014-2019 Mike Bierlee
* 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.

View file

@ -3,7 +3,7 @@
*
* Authors:
* Mike Bierlee, m.bierlee@lostmoment.com
* Copyright: 2014-2018 Mike Bierlee
* Copyright: 2014-2019 Mike Bierlee
* 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.

View file

@ -3,7 +3,7 @@
*
* Authors:
* Mike Bierlee, m.bierlee@lostmoment.com
* Copyright: 2014-2018 Mike Bierlee
* Copyright: 2014-2019 Mike Bierlee
* 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.

View file

@ -19,7 +19,7 @@
* Kenji Hara,
* Shoichi Kato,
* 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)
*/

View file

@ -5,7 +5,7 @@
*
* Authors:
* Mike Bierlee, m.bierlee@lostmoment.com
* Copyright: 2014-2018 Mike Bierlee
* Copyright: 2014-2019 Mike Bierlee
* 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.

View file

@ -4,7 +4,7 @@
*
* Authors:
* Mike Bierlee, m.bierlee@lostmoment.com
* Copyright: 2014-2018 Mike Bierlee
* Copyright: 2014-2019 Mike Bierlee
* 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.

View file

@ -1,6 +1,6 @@
/**
* 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.
* The full terms of the license can be found in the LICENSE file.
*/

View file

@ -1,6 +1,6 @@
/**
* 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.
* The full terms of the license can be found in the LICENSE file.
*/

View file

@ -1,6 +1,6 @@
/**
* 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.
* The full terms of the license can be found in the LICENSE file.
*/

View file

@ -1,6 +1,6 @@
/**
* 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.
* The full terms of the license can be found in the LICENSE file.
*/

View file

@ -1,6 +1,6 @@
/**
* 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.
* The full terms of the license can be found in the LICENSE file.
*/

View file

@ -1,6 +1,6 @@
/**
* 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.
* The full terms of the license can be found in the LICENSE file.
*/

View file

@ -1,6 +1,6 @@
/**
* 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.
* The full terms of the license can be found in the LICENSE file.
*/

View file

@ -1,6 +1,6 @@
/**
* 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.
* The full terms of the license can be found in the LICENSE file.
*/

View file

@ -1,6 +1,6 @@
/**
* 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.
* The full terms of the license can be found in the LICENSE file.
*/