diff --git a/DeclarationCycleZip/Program.cs b/DeclarationCycleZip/Program.cs index da9145effca538a8e8703fbb6f1746bee8e82ac2..e56052bc49eb27e4e6af33f4f70b53656613488a 100644 --- a/DeclarationCycleZip/Program.cs +++ b/DeclarationCycleZip/Program.cs @@ -1,4 +1,20 @@ -using System; +/* +* Copyright 2015 European Union +* +* Licensed under the EUPL (the "Licence"); +* You may not use this work except in compliance with the Licence. +* You may obtain a copy of the Licence at: +* +* http://ec.europa.eu/idabc/eupl5 +* +* Unless required by applicable law or agreed to in writing, software +* distributed under the Licence is distributed on an "AS IS" basis, +* WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. +* See the Licence for the specific language governing permissions and +* limitations under the Licence. +*/ + +using System; using System.Collections.Generic; using System.Data; using System.Globalization; diff --git a/DeclarationCycleZip/Properties/AssemblyInfo.cs b/DeclarationCycleZip/Properties/AssemblyInfo.cs index dd38692ea994635699e3b17918ad6852186f2958..655c998cae54a0bef6ea054b002e6c317debff65 100644 --- a/DeclarationCycleZip/Properties/AssemblyInfo.cs +++ b/DeclarationCycleZip/Properties/AssemblyInfo.cs @@ -1,4 +1,20 @@ -using System.Reflection; +/* +* Copyright 2015 European Union +* +* Licensed under the EUPL (the "Licence"); +* You may not use this work except in compliance with the Licence. +* You may obtain a copy of the Licence at: +* +* http://ec.europa.eu/idabc/eupl5 +* +* Unless required by applicable law or agreed to in writing, software +* distributed under the Licence is distributed on an "AS IS" basis, +* WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. +* See the Licence for the specific language governing permissions and +* limitations under the Licence. +*/ + +using System.Reflection; using System.Runtime.CompilerServices; using System.Runtime.InteropServices; diff --git a/GraphDrawer/Program.cs b/GraphDrawer/Program.cs index 9cde53c0c72c3d218dc9ac49047fb55b564140b4..6f7d5165d982536a77243bb0283801a0b58dffdd 100644 --- a/GraphDrawer/Program.cs +++ b/GraphDrawer/Program.cs @@ -1,4 +1,20 @@ -using System; +/* +* Copyright 2015 European Union +* +* Licensed under the EUPL (the "Licence"); +* You may not use this work except in compliance with the Licence. +* You may obtain a copy of the Licence at: +* +* http://ec.europa.eu/idabc/eupl5 +* +* Unless required by applicable law or agreed to in writing, software +* distributed under the Licence is distributed on an "AS IS" basis, +* WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. +* See the Licence for the specific language governing permissions and +* limitations under the Licence. +*/ + +using System; using System.Collections.Generic; using System.Linq; using System.Text; diff --git a/GraphDrawer/Properties/AssemblyInfo.cs b/GraphDrawer/Properties/AssemblyInfo.cs index 70f7ee5a74a0bf66d1564b931b8436f7ffcb1550..30394d3062c951aa924f89289ec7d17fdf3fa994 100644 --- a/GraphDrawer/Properties/AssemblyInfo.cs +++ b/GraphDrawer/Properties/AssemblyInfo.cs @@ -1,4 +1,20 @@ -using System.Reflection; +/* +* Copyright 2015 European Union +* +* Licensed under the EUPL (the "Licence"); +* You may not use this work except in compliance with the Licence. +* You may obtain a copy of the Licence at: +* +* http://ec.europa.eu/idabc/eupl5 +* +* Unless required by applicable law or agreed to in writing, software +* distributed under the Licence is distributed on an "AS IS" basis, +* WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. +* See the Licence for the specific language governing permissions and +* limitations under the Licence. +*/ + +using System.Reflection; using System.Runtime.CompilerServices; using System.Runtime.InteropServices; diff --git a/LicenceHeader/Program.cs b/LicenceHeader/Program.cs index e1921558fecaaa03b758ef4deb248b8b368da8a9..853fb97b14b7b224bf92b3207b6358db618252c1 100644 --- a/LicenceHeader/Program.cs +++ b/LicenceHeader/Program.cs @@ -1,37 +1,54 @@ -using System; +/* +* Copyright 2015 European Union +* +* Licensed under the EUPL (the "Licence"); +* You may not use this work except in compliance with the Licence. +* You may obtain a copy of the Licence at: +* +* http://ec.europa.eu/idabc/eupl5 +* +* Unless required by applicable law or agreed to in writing, software +* distributed under the Licence is distributed on an "AS IS" basis, +* WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. +* See the Licence for the specific language governing permissions and +* limitations under the Licence. +*/ + +using System; using System.IO; +using System.Text; using System.Text.RegularExpressions; namespace LicenceHeader { /// <summary> - /// Updates/Adds the EUPL license header to every .cs file in the projects: VectoCore, VectoConsole, VectoCoreTest + /// Updates/Adds the EUPL license header to every .cs file in the solution directory /// </summary> internal class Program { private const string SolutionRootDirectory = @"..\\..\\.."; - private static readonly string[] ProjectDirectories = { "VectoCore", "VectoConsole", "VectoCoreTest" }; private static void Main() { var licence = File.ReadAllText("header.txt"); + var count = 0; - foreach (var dir in ProjectDirectories) { - foreach ( - var file in Directory.GetFiles(Path.Combine(SolutionRootDirectory, dir), "*.cs", SearchOption.AllDirectories)) { - if (file.Contains("\\obj\\") || file.Contains("\\bin\\")) { - continue; - } + foreach (var file in Directory.GetFiles(SolutionRootDirectory, "*.cs", SearchOption.AllDirectories)) { + if (file.Contains("\\obj\\") || file.Contains("\\bin\\")) { + continue; + } - var re = new Regex("^.*?(?=using|namespace)"); - var content = File.ReadAllText(file); - var updatedContent = re.Replace(content, licence); - if (updatedContent != content) { - File.WriteAllText(file, updatedContent); - } - Console.WriteLine(file); + var re = new Regex("^.*?(?=using|namespace)"); + var content = File.ReadAllText(file, Encoding.Default); + var updatedContent = re.Replace(content, licence); + if (updatedContent != content) { + File.WriteAllText(file, updatedContent, Encoding.Default); + Console.WriteLine("Updated " + file); + count++; } } + Console.WriteLine("Finished. Updated {0} files.", count); + Console.ReadKey(); } } } \ No newline at end of file diff --git a/LicenceHeader/Properties/AssemblyInfo.cs b/LicenceHeader/Properties/AssemblyInfo.cs index f474a7f484be1ab44ee474aa6502f6947d357836..2ac638215d5f6d6449b1a917f2da3982fdffd2f5 100644 --- a/LicenceHeader/Properties/AssemblyInfo.cs +++ b/LicenceHeader/Properties/AssemblyInfo.cs @@ -1,4 +1,20 @@ -using System.Reflection; +/* +* Copyright 2015 European Union +* +* Licensed under the EUPL (the "Licence"); +* You may not use this work except in compliance with the Licence. +* You may obtain a copy of the Licence at: +* +* http://ec.europa.eu/idabc/eupl5 +* +* Unless required by applicable law or agreed to in writing, software +* distributed under the Licence is distributed on an "AS IS" basis, +* WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. +* See the Licence for the specific language governing permissions and +* limitations under the Licence. +*/ + +using System.Reflection; using System.Runtime.CompilerServices; using System.Runtime.InteropServices; diff --git a/VectoConsole/Program.cs b/VectoConsole/Program.cs index fe029ee98c518b7cf81d96760b99c72eb616bc5f..4aebaf9c7c89c3873816a90e447fa4819b6b3062 100644 --- a/VectoConsole/Program.cs +++ b/VectoConsole/Program.cs @@ -1,4 +1,20 @@ -using System; +/* +* Copyright 2015 European Union +* +* Licensed under the EUPL (the "Licence"); +* You may not use this work except in compliance with the Licence. +* You may obtain a copy of the Licence at: +* +* http://ec.europa.eu/idabc/eupl5 +* +* Unless required by applicable law or agreed to in writing, software +* distributed under the Licence is distributed on an "AS IS" basis, +* WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. +* See the Licence for the specific language governing permissions and +* limitations under the Licence. +*/ + +using System; using System.Collections.Generic; using System.Diagnostics; using System.IO; diff --git a/VectoConsole/Properties/AssemblyInfo.cs b/VectoConsole/Properties/AssemblyInfo.cs index 2d3069dd6213cbb7f984c34577998fefb94d05e8..52d5d9a0100228f60e8d6c7dc9ef51fbeb5a8587 100644 --- a/VectoConsole/Properties/AssemblyInfo.cs +++ b/VectoConsole/Properties/AssemblyInfo.cs @@ -1,4 +1,20 @@ -using System.Reflection; +/* +* Copyright 2015 European Union +* +* Licensed under the EUPL (the "Licence"); +* You may not use this work except in compliance with the Licence. +* You may obtain a copy of the Licence at: +* +* http://ec.europa.eu/idabc/eupl5 +* +* Unless required by applicable law or agreed to in writing, software +* distributed under the Licence is distributed on an "AS IS" basis, +* WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. +* See the Licence for the specific language governing permissions and +* limitations under the Licence. +*/ + +using System.Reflection; using System.Runtime.InteropServices; [assembly: AssemblyTitle("Vecto Console")] diff --git a/VectoConsole/Properties/Version.cs b/VectoConsole/Properties/Version.cs index 156b25260edd612541c4523d13f4550fd0d0a936..a2127967a7a01ec19f4545e8ff0bf06a97668ae5 100644 --- a/VectoConsole/Properties/Version.cs +++ b/VectoConsole/Properties/Version.cs @@ -1,4 +1,20 @@ -using System.Reflection; +/* +* Copyright 2015 European Union +* +* Licensed under the EUPL (the "Licence"); +* You may not use this work except in compliance with the Licence. +* You may obtain a copy of the Licence at: +* +* http://ec.europa.eu/idabc/eupl5 +* +* Unless required by applicable law or agreed to in writing, software +* distributed under the Licence is distributed on an "AS IS" basis, +* WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. +* See the Licence for the specific language governing permissions and +* limitations under the Licence. +*/ + +using System.Reflection; // generated on 11.11.2015 13:31:46 [assembly: AssemblyVersion("3.0.1.314")] diff --git a/VectoCore/Configuration/Constants.cs b/VectoCore/Configuration/Constants.cs index a5bc06b9ce445fa7175d7bb0267fb70a7276b502..f9433a817b37eecba5a41e363cc788299a8699d5 100644 --- a/VectoCore/Configuration/Constants.cs +++ b/VectoCore/Configuration/Constants.cs @@ -1,4 +1,20 @@ -using TUGraz.VectoCore.Utils; +/* +* Copyright 2015 European Union +* +* Licensed under the EUPL (the "Licence"); +* You may not use this work except in compliance with the Licence. +* You may obtain a copy of the Licence at: +* +* http://ec.europa.eu/idabc/eupl5 +* +* Unless required by applicable law or agreed to in writing, software +* distributed under the Licence is distributed on an "AS IS" basis, +* WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. +* See the Licence for the specific language governing permissions and +* limitations under the Licence. +*/ + +using TUGraz.VectoCore.Utils; namespace TUGraz.VectoCore.Configuration { diff --git a/VectoCore/Exceptions/VectoExceptions.cs b/VectoCore/Exceptions/VectoExceptions.cs index 3019e44a73a2981d9d4dff0dba3237e1170d2f58..a6e90db032f4f8e16292ba8d1aa2545099de9fd0 100644 --- a/VectoCore/Exceptions/VectoExceptions.cs +++ b/VectoCore/Exceptions/VectoExceptions.cs @@ -1,4 +1,20 @@ -using System; +/* +* Copyright 2015 European Union +* +* Licensed under the EUPL (the "Licence"); +* You may not use this work except in compliance with the Licence. +* You may obtain a copy of the Licence at: +* +* http://ec.europa.eu/idabc/eupl5 +* +* Unless required by applicable law or agreed to in writing, software +* distributed under the Licence is distributed on an "AS IS" basis, +* WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. +* See the Licence for the specific language governing permissions and +* limitations under the Licence. +*/ + +using System; using System.IO; using JetBrains.Annotations; using NLog; diff --git a/VectoCore/Exceptions/VectoSimulationException.cs b/VectoCore/Exceptions/VectoSimulationException.cs index ebbd9c00f76416c21c29e3771d3c45bff98b484b..d7793a66b390c89f4530b3b74eae9f18783e62f0 100644 --- a/VectoCore/Exceptions/VectoSimulationException.cs +++ b/VectoCore/Exceptions/VectoSimulationException.cs @@ -1,4 +1,20 @@ -using System; +/* +* Copyright 2015 European Union +* +* Licensed under the EUPL (the "Licence"); +* You may not use this work except in compliance with the Licence. +* You may obtain a copy of the Licence at: +* +* http://ec.europa.eu/idabc/eupl5 +* +* Unless required by applicable law or agreed to in writing, software +* distributed under the Licence is distributed on an "AS IS" basis, +* WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. +* See the Licence for the specific language governing permissions and +* limitations under the Licence. +*/ + +using System; using JetBrains.Annotations; using TUGraz.VectoCore.Models.Connector.Ports; diff --git a/VectoCore/FileIO/DeclarationFile/EngineFileDecl.cs b/VectoCore/FileIO/DeclarationFile/EngineFileDecl.cs index baa80e03522b4c4bad72369d73841a9bb96e129b..984ab9eba1a9027a719c4b4516cfc063f8be25b9 100644 --- a/VectoCore/FileIO/DeclarationFile/EngineFileDecl.cs +++ b/VectoCore/FileIO/DeclarationFile/EngineFileDecl.cs @@ -1,4 +1,20 @@ -using System.Collections.Generic; +/* +* Copyright 2015 European Union +* +* Licensed under the EUPL (the "Licence"); +* You may not use this work except in compliance with the Licence. +* You may obtain a copy of the Licence at: +* +* http://ec.europa.eu/idabc/eupl5 +* +* Unless required by applicable law or agreed to in writing, software +* distributed under the Licence is distributed on an "AS IS" basis, +* WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. +* See the Licence for the specific language governing permissions and +* limitations under the Licence. +*/ + +using System.Collections.Generic; using Newtonsoft.Json; using TUGraz.VectoCore.Models.SimulationComponent.Data; diff --git a/VectoCore/FileIO/DeclarationFile/GearboxFileDecl.cs b/VectoCore/FileIO/DeclarationFile/GearboxFileDecl.cs index 146419ff9533ac2202f5a2af32fec433c961a917..86887fdf7c6d59ab7a284b454fa238c58e447648 100644 --- a/VectoCore/FileIO/DeclarationFile/GearboxFileDecl.cs +++ b/VectoCore/FileIO/DeclarationFile/GearboxFileDecl.cs @@ -1,4 +1,20 @@ -using System.Collections.Generic; +/* +* Copyright 2015 European Union +* +* Licensed under the EUPL (the "Licence"); +* You may not use this work except in compliance with the Licence. +* You may obtain a copy of the Licence at: +* +* http://ec.europa.eu/idabc/eupl5 +* +* Unless required by applicable law or agreed to in writing, software +* distributed under the Licence is distributed on an "AS IS" basis, +* WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. +* See the Licence for the specific language governing permissions and +* limitations under the Licence. +*/ + +using System.Collections.Generic; using Newtonsoft.Json; using TUGraz.VectoCore.Utils; diff --git a/VectoCore/FileIO/DeclarationFile/JobFileDecl.cs b/VectoCore/FileIO/DeclarationFile/JobFileDecl.cs index c52ebc7adcefef4562e97032601633ecc7829066..ec8b1494eb1aa40fcb29231e9f0c482c9e938e06 100644 --- a/VectoCore/FileIO/DeclarationFile/JobFileDecl.cs +++ b/VectoCore/FileIO/DeclarationFile/JobFileDecl.cs @@ -1,4 +1,20 @@ -using System.Collections.Generic; +/* +* Copyright 2015 European Union +* +* Licensed under the EUPL (the "Licence"); +* You may not use this work except in compliance with the Licence. +* You may obtain a copy of the Licence at: +* +* http://ec.europa.eu/idabc/eupl5 +* +* Unless required by applicable law or agreed to in writing, software +* distributed under the Licence is distributed on an "AS IS" basis, +* WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. +* See the Licence for the specific language governing permissions and +* limitations under the Licence. +*/ + +using System.Collections.Generic; using Newtonsoft.Json; namespace TUGraz.VectoCore.FileIO.DeclarationFile diff --git a/VectoCore/FileIO/DeclarationFile/VehicleFileDecl.cs b/VectoCore/FileIO/DeclarationFile/VehicleFileDecl.cs index 1cb68fe40569207cc1e1c7b6727df1539ee9e1cb..4f85cbffe819f8f3dc1d098ab7166d4ad070bbc8 100644 --- a/VectoCore/FileIO/DeclarationFile/VehicleFileDecl.cs +++ b/VectoCore/FileIO/DeclarationFile/VehicleFileDecl.cs @@ -1,4 +1,20 @@ -using System; +/* +* Copyright 2015 European Union +* +* Licensed under the EUPL (the "Licence"); +* You may not use this work except in compliance with the Licence. +* You may obtain a copy of the Licence at: +* +* http://ec.europa.eu/idabc/eupl5 +* +* Unless required by applicable law or agreed to in writing, software +* distributed under the Licence is distributed on an "AS IS" basis, +* WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. +* See the Licence for the specific language governing permissions and +* limitations under the Licence. +*/ + +using System; using System.Collections.Generic; using Newtonsoft.Json; using TUGraz.VectoCore.Models.Declaration; diff --git a/VectoCore/FileIO/EngineeringFile/EngineFileEng.cs b/VectoCore/FileIO/EngineeringFile/EngineFileEng.cs index 4d4771b06af5ce3ca02f3a2342b53014f30e0f6f..58cf384d13f0192ffe7feada9d94f65c61bef96a 100644 --- a/VectoCore/FileIO/EngineeringFile/EngineFileEng.cs +++ b/VectoCore/FileIO/EngineeringFile/EngineFileEng.cs @@ -1,4 +1,20 @@ -using Newtonsoft.Json; +/* +* Copyright 2015 European Union +* +* Licensed under the EUPL (the "Licence"); +* You may not use this work except in compliance with the Licence. +* You may obtain a copy of the Licence at: +* +* http://ec.europa.eu/idabc/eupl5 +* +* Unless required by applicable law or agreed to in writing, software +* distributed under the Licence is distributed on an "AS IS" basis, +* WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. +* See the Licence for the specific language governing permissions and +* limitations under the Licence. +*/ + +using Newtonsoft.Json; using TUGraz.VectoCore.FileIO.DeclarationFile; namespace TUGraz.VectoCore.FileIO.EngineeringFile diff --git a/VectoCore/FileIO/EngineeringFile/GearboxFileEng.cs b/VectoCore/FileIO/EngineeringFile/GearboxFileEng.cs index 0df9a9a03913cf641ea1c3bfe9a02858c1f57e37..72ae726ec75cdbb223416d75e01a50471a6986ff 100644 --- a/VectoCore/FileIO/EngineeringFile/GearboxFileEng.cs +++ b/VectoCore/FileIO/EngineeringFile/GearboxFileEng.cs @@ -1,4 +1,20 @@ -using System.Collections.Generic; +/* +* Copyright 2015 European Union +* +* Licensed under the EUPL (the "Licence"); +* You may not use this work except in compliance with the Licence. +* You may obtain a copy of the Licence at: +* +* http://ec.europa.eu/idabc/eupl5 +* +* Unless required by applicable law or agreed to in writing, software +* distributed under the Licence is distributed on an "AS IS" basis, +* WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. +* See the Licence for the specific language governing permissions and +* limitations under the Licence. +*/ + +using System.Collections.Generic; using JetBrains.Annotations; using Newtonsoft.Json; using TUGraz.VectoCore.FileIO.DeclarationFile; diff --git a/VectoCore/FileIO/EngineeringFile/JobFileEng.cs b/VectoCore/FileIO/EngineeringFile/JobFileEng.cs index 54081289042a51cf844570c2c8a13bf34e189c06..b2975f0fc9b4b28e776d0d54bb25ccf7c4c82ca6 100644 --- a/VectoCore/FileIO/EngineeringFile/JobFileEng.cs +++ b/VectoCore/FileIO/EngineeringFile/JobFileEng.cs @@ -1,4 +1,20 @@ -using System.Collections.Generic; +/* +* Copyright 2015 European Union +* +* Licensed under the EUPL (the "Licence"); +* You may not use this work except in compliance with the Licence. +* You may obtain a copy of the Licence at: +* +* http://ec.europa.eu/idabc/eupl5 +* +* Unless required by applicable law or agreed to in writing, software +* distributed under the Licence is distributed on an "AS IS" basis, +* WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. +* See the Licence for the specific language governing permissions and +* limitations under the Licence. +*/ + +using System.Collections.Generic; using Newtonsoft.Json; using TUGraz.VectoCore.FileIO.DeclarationFile; using TUGraz.VectoCore.Models.SimulationComponent.Data; diff --git a/VectoCore/FileIO/EngineeringFile/VehicleFileEng.cs b/VectoCore/FileIO/EngineeringFile/VehicleFileEng.cs index 3e0feb580c09c1f94c8639441e573ebf07275740..fe1eac2c17b193b978736d683558c069b74b5dc3 100644 --- a/VectoCore/FileIO/EngineeringFile/VehicleFileEng.cs +++ b/VectoCore/FileIO/EngineeringFile/VehicleFileEng.cs @@ -1,4 +1,20 @@ -using System.Collections.Generic; +/* +* Copyright 2015 European Union +* +* Licensed under the EUPL (the "Licence"); +* You may not use this work except in compliance with the Licence. +* You may obtain a copy of the Licence at: +* +* http://ec.europa.eu/idabc/eupl5 +* +* Unless required by applicable law or agreed to in writing, software +* distributed under the Licence is distributed on an "AS IS" basis, +* WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. +* See the Licence for the specific language governing permissions and +* limitations under the Licence. +*/ + +using System.Collections.Generic; using Newtonsoft.Json; using TUGraz.VectoCore.FileIO.DeclarationFile; diff --git a/VectoCore/FileIO/InputFileReader.cs b/VectoCore/FileIO/InputFileReader.cs index c580aaa48bc4a9c8a4205c7bf943dd84edaa7ca6..33c8e24b396fa1837dc6e1ec4939ec62f271c197 100644 --- a/VectoCore/FileIO/InputFileReader.cs +++ b/VectoCore/FileIO/InputFileReader.cs @@ -1,4 +1,20 @@ -using Newtonsoft.Json; +/* +* Copyright 2015 European Union +* +* Licensed under the EUPL (the "Licence"); +* You may not use this work except in compliance with the Licence. +* You may obtain a copy of the Licence at: +* +* http://ec.europa.eu/idabc/eupl5 +* +* Unless required by applicable law or agreed to in writing, software +* distributed under the Licence is distributed on an "AS IS" basis, +* WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. +* See the Licence for the specific language governing permissions and +* limitations under the Licence. +*/ + +using Newtonsoft.Json; using TUGraz.VectoCore.Models; namespace TUGraz.VectoCore.FileIO diff --git a/VectoCore/FileIO/JsonDataHeader.cs b/VectoCore/FileIO/JsonDataHeader.cs index 9768d9ab373d70e9bdf103a642977297b9740dcc..ad1f59f1c74e20478ad19fdef00704cca0126b68 100644 --- a/VectoCore/FileIO/JsonDataHeader.cs +++ b/VectoCore/FileIO/JsonDataHeader.cs @@ -1,4 +1,20 @@ -using System; +/* +* Copyright 2015 European Union +* +* Licensed under the EUPL (the "Licence"); +* You may not use this work except in compliance with the Licence. +* You may obtain a copy of the Licence at: +* +* http://ec.europa.eu/idabc/eupl5 +* +* Unless required by applicable law or agreed to in writing, software +* distributed under the Licence is distributed on an "AS IS" basis, +* WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. +* See the Licence for the specific language governing permissions and +* limitations under the Licence. +*/ + +using System; using Newtonsoft.Json; using TUGraz.VectoCore.Utils; diff --git a/VectoCore/FileIO/Reader/DataObjectAdaper/AbstractSimulationDataAdapter.cs b/VectoCore/FileIO/Reader/DataObjectAdaper/AbstractSimulationDataAdapter.cs index cbaf59f9a19df6ff1fe0c30e6bd90d97479a8ab6..32bb69839175e042a57be26a1e1ddca1f8233d5e 100644 --- a/VectoCore/FileIO/Reader/DataObjectAdaper/AbstractSimulationDataAdapter.cs +++ b/VectoCore/FileIO/Reader/DataObjectAdaper/AbstractSimulationDataAdapter.cs @@ -1,4 +1,20 @@ -using System; +/* +* Copyright 2015 European Union +* +* Licensed under the EUPL (the "Licence"); +* You may not use this work except in compliance with the Licence. +* You may obtain a copy of the Licence at: +* +* http://ec.europa.eu/idabc/eupl5 +* +* Unless required by applicable law or agreed to in writing, software +* distributed under the Licence is distributed on an "AS IS" basis, +* WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. +* See the Licence for the specific language governing permissions and +* limitations under the Licence. +*/ + +using System; using System.IO; using TUGraz.VectoCore.FileIO.DeclarationFile; using TUGraz.VectoCore.Models.Declaration; diff --git a/VectoCore/FileIO/Reader/DataObjectAdaper/DeclarationDataAdapter.cs b/VectoCore/FileIO/Reader/DataObjectAdaper/DeclarationDataAdapter.cs index 1b6690546a833ef57c4ce48fae0abfc70fc41f86..123eca70eb13099f7af89886f33a96441e57e4a4 100644 --- a/VectoCore/FileIO/Reader/DataObjectAdaper/DeclarationDataAdapter.cs +++ b/VectoCore/FileIO/Reader/DataObjectAdaper/DeclarationDataAdapter.cs @@ -1,4 +1,20 @@ -using System; +/* +* Copyright 2015 European Union +* +* Licensed under the EUPL (the "Licence"); +* You may not use this work except in compliance with the Licence. +* You may obtain a copy of the Licence at: +* +* http://ec.europa.eu/idabc/eupl5 +* +* Unless required by applicable law or agreed to in writing, software +* distributed under the Licence is distributed on an "AS IS" basis, +* WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. +* See the Licence for the specific language governing permissions and +* limitations under the Licence. +*/ + +using System; using System.Collections.Generic; using System.IO; using System.Linq; diff --git a/VectoCore/FileIO/Reader/DataObjectAdaper/EngineeringDataAdapter.cs b/VectoCore/FileIO/Reader/DataObjectAdaper/EngineeringDataAdapter.cs index 1dec2481b497d3c3186f263049996f3d03a71907..95544c06d8a12aec06ab0e0b37c2914a204674d5 100644 --- a/VectoCore/FileIO/Reader/DataObjectAdaper/EngineeringDataAdapter.cs +++ b/VectoCore/FileIO/Reader/DataObjectAdaper/EngineeringDataAdapter.cs @@ -1,4 +1,20 @@ -using System; +/* +* Copyright 2015 European Union +* +* Licensed under the EUPL (the "Licence"); +* You may not use this work except in compliance with the Licence. +* You may obtain a copy of the Licence at: +* +* http://ec.europa.eu/idabc/eupl5 +* +* Unless required by applicable law or agreed to in writing, software +* distributed under the Licence is distributed on an "AS IS" basis, +* WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. +* See the Licence for the specific language governing permissions and +* limitations under the Licence. +*/ + +using System; using System.IO; using System.Linq; using TUGraz.VectoCore.Exceptions; diff --git a/VectoCore/FileIO/Reader/DrivingCycleDataReader.cs b/VectoCore/FileIO/Reader/DrivingCycleDataReader.cs index d3c44bdc26fde15133e69faee93bd4ab9c51f0b0..28ff5c34e70af5fd46d2824c8dd449aa0341ef5b 100644 --- a/VectoCore/FileIO/Reader/DrivingCycleDataReader.cs +++ b/VectoCore/FileIO/Reader/DrivingCycleDataReader.cs @@ -1,4 +1,20 @@ -using System; +/* +* Copyright 2015 European Union +* +* Licensed under the EUPL (the "Licence"); +* You may not use this work except in compliance with the Licence. +* You may obtain a copy of the Licence at: +* +* http://ec.europa.eu/idabc/eupl5 +* +* Unless required by applicable law or agreed to in writing, software +* distributed under the Licence is distributed on an "AS IS" basis, +* WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. +* See the Licence for the specific language governing permissions and +* limitations under the Licence. +*/ + +using System; using System.Collections.Generic; using System.Data; using System.IO; diff --git a/VectoCore/FileIO/Reader/ISimulationDataReader.cs b/VectoCore/FileIO/Reader/ISimulationDataReader.cs index 1c6b2c7b770423f41c49dd415df12fdf30504df7..da78748aeef0be4e7c93ec336a4c211506326a6c 100644 --- a/VectoCore/FileIO/Reader/ISimulationDataReader.cs +++ b/VectoCore/FileIO/Reader/ISimulationDataReader.cs @@ -1,4 +1,20 @@ -using System.Collections.Generic; +/* +* Copyright 2015 European Union +* +* Licensed under the EUPL (the "Licence"); +* You may not use this work except in compliance with the Licence. +* You may obtain a copy of the Licence at: +* +* http://ec.europa.eu/idabc/eupl5 +* +* Unless required by applicable law or agreed to in writing, software +* distributed under the Licence is distributed on an "AS IS" basis, +* WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. +* See the Licence for the specific language governing permissions and +* limitations under the Licence. +*/ + +using System.Collections.Generic; using System.Security.Cryptography.X509Certificates; using TUGraz.VectoCore.Models.Simulation.Data; diff --git a/VectoCore/FileIO/Reader/Impl/AbstractSimulationDataReader.cs b/VectoCore/FileIO/Reader/Impl/AbstractSimulationDataReader.cs index 8cbca82720868a968eea3538172d2e68d96dae9e..e3e3e4d629c4868034f54c5e868317ee03c6a87e 100644 --- a/VectoCore/FileIO/Reader/Impl/AbstractSimulationDataReader.cs +++ b/VectoCore/FileIO/Reader/Impl/AbstractSimulationDataReader.cs @@ -1,4 +1,20 @@ -using System.Collections.Generic; +/* +* Copyright 2015 European Union +* +* Licensed under the EUPL (the "Licence"); +* You may not use this work except in compliance with the Licence. +* You may obtain a copy of the Licence at: +* +* http://ec.europa.eu/idabc/eupl5 +* +* Unless required by applicable law or agreed to in writing, software +* distributed under the Licence is distributed on an "AS IS" basis, +* WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. +* See the Licence for the specific language governing permissions and +* limitations under the Licence. +*/ + +using System.Collections.Generic; using TUGraz.VectoCore.Models.Simulation.Data; namespace TUGraz.VectoCore.FileIO.Reader.Impl diff --git a/VectoCore/FileIO/Reader/Impl/DeclarationModeSimulationDataReader.cs b/VectoCore/FileIO/Reader/Impl/DeclarationModeSimulationDataReader.cs index 676dc85fc5f56faefa048b72680996e18fc51878..4982905e959503ec23a8224439aab7ba4038a29c 100644 --- a/VectoCore/FileIO/Reader/Impl/DeclarationModeSimulationDataReader.cs +++ b/VectoCore/FileIO/Reader/Impl/DeclarationModeSimulationDataReader.cs @@ -1,4 +1,20 @@ -using System; +/* +* Copyright 2015 European Union +* +* Licensed under the EUPL (the "Licence"); +* You may not use this work except in compliance with the Licence. +* You may obtain a copy of the Licence at: +* +* http://ec.europa.eu/idabc/eupl5 +* +* Unless required by applicable law or agreed to in writing, software +* distributed under the Licence is distributed on an "AS IS" basis, +* WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. +* See the Licence for the specific language governing permissions and +* limitations under the Licence. +*/ + +using System; using System.Collections.Generic; using System.IO; using System.Linq; diff --git a/VectoCore/FileIO/Reader/Impl/EngineOnlySimulationDataReader.cs b/VectoCore/FileIO/Reader/Impl/EngineOnlySimulationDataReader.cs index 63b86e8b5197b252e1edb41cee31349d07052c8a..1bf2d32f15eff236aac66f327b21ff949d18529a 100644 --- a/VectoCore/FileIO/Reader/Impl/EngineOnlySimulationDataReader.cs +++ b/VectoCore/FileIO/Reader/Impl/EngineOnlySimulationDataReader.cs @@ -1,4 +1,20 @@ -using System.Collections.Generic; +/* +* Copyright 2015 European Union +* +* Licensed under the EUPL (the "Licence"); +* You may not use this work except in compliance with the Licence. +* You may obtain a copy of the Licence at: +* +* http://ec.europa.eu/idabc/eupl5 +* +* Unless required by applicable law or agreed to in writing, software +* distributed under the Licence is distributed on an "AS IS" basis, +* WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. +* See the Licence for the specific language governing permissions and +* limitations under the Licence. +*/ + +using System.Collections.Generic; using System.IO; using TUGraz.VectoCore.Exceptions; using TUGraz.VectoCore.FileIO.EngineeringFile; diff --git a/VectoCore/FileIO/Reader/Impl/EngineeringModeSimulationDataReader.cs b/VectoCore/FileIO/Reader/Impl/EngineeringModeSimulationDataReader.cs index 461f859b3fa7e042b1b2f371a7bb2e4db2413bdc..52defd10ad881d77d7c0625399295cea1f3febf2 100644 --- a/VectoCore/FileIO/Reader/Impl/EngineeringModeSimulationDataReader.cs +++ b/VectoCore/FileIO/Reader/Impl/EngineeringModeSimulationDataReader.cs @@ -1,4 +1,20 @@ -using System; +/* +* Copyright 2015 European Union +* +* Licensed under the EUPL (the "Licence"); +* You may not use this work except in compliance with the Licence. +* You may obtain a copy of the Licence at: +* +* http://ec.europa.eu/idabc/eupl5 +* +* Unless required by applicable law or agreed to in writing, software +* distributed under the Licence is distributed on an "AS IS" basis, +* WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. +* See the Licence for the specific language governing permissions and +* limitations under the Licence. +*/ + +using System; using System.Collections.Generic; using System.IO; using System.Linq; diff --git a/VectoCore/FileIO/VectoFiles.cs b/VectoCore/FileIO/VectoFiles.cs index 17b68ce81afaa39cd80edaa7b415f1db788d74cf..6194aaa170c6cd3a92fecace5e0ee5bfa0d31009 100644 --- a/VectoCore/FileIO/VectoFiles.cs +++ b/VectoCore/FileIO/VectoFiles.cs @@ -1,4 +1,20 @@ -using System.IO; +/* +* Copyright 2015 European Union +* +* Licensed under the EUPL (the "Licence"); +* You may not use this work except in compliance with the Licence. +* You may obtain a copy of the Licence at: +* +* http://ec.europa.eu/idabc/eupl5 +* +* Unless required by applicable law or agreed to in writing, software +* distributed under the Licence is distributed on an "AS IS" basis, +* WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. +* See the Licence for the specific language governing permissions and +* limitations under the Licence. +*/ + +using System.IO; using System.Runtime.Serialization; namespace TUGraz.VectoCore.FileIO diff --git a/VectoCore/Models/Connector/Ports/IDriverDemandPort.cs b/VectoCore/Models/Connector/Ports/IDriverDemandPort.cs index 700937f2a72d9f0d1dd74eec8637e5cbfce972bc..56262a40ec41b1b70f579fe11fb824cd6da0c77e 100644 --- a/VectoCore/Models/Connector/Ports/IDriverDemandPort.cs +++ b/VectoCore/Models/Connector/Ports/IDriverDemandPort.cs @@ -1,4 +1,20 @@ -using System; +/* +* Copyright 2015 European Union +* +* Licensed under the EUPL (the "Licence"); +* You may not use this work except in compliance with the Licence. +* You may obtain a copy of the Licence at: +* +* http://ec.europa.eu/idabc/eupl5 +* +* Unless required by applicable law or agreed to in writing, software +* distributed under the Licence is distributed on an "AS IS" basis, +* WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. +* See the Licence for the specific language governing permissions and +* limitations under the Licence. +*/ + +using System; using TUGraz.VectoCore.Utils; namespace TUGraz.VectoCore.Models.Connector.Ports diff --git a/VectoCore/Models/Connector/Ports/IDrivingCyclePort.cs b/VectoCore/Models/Connector/Ports/IDrivingCyclePort.cs index 1e3d7b1e7a1eaec7625e471e79010fb8368a2727..a9e39762c765ba34c5d2cb5c708e5a8865206f5f 100644 --- a/VectoCore/Models/Connector/Ports/IDrivingCyclePort.cs +++ b/VectoCore/Models/Connector/Ports/IDrivingCyclePort.cs @@ -1,4 +1,20 @@ -using System; +/* +* Copyright 2015 European Union +* +* Licensed under the EUPL (the "Licence"); +* You may not use this work except in compliance with the Licence. +* You may obtain a copy of the Licence at: +* +* http://ec.europa.eu/idabc/eupl5 +* +* Unless required by applicable law or agreed to in writing, software +* distributed under the Licence is distributed on an "AS IS" basis, +* WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. +* See the Licence for the specific language governing permissions and +* limitations under the Licence. +*/ + +using System; using TUGraz.VectoCore.Utils; namespace TUGraz.VectoCore.Models.Connector.Ports diff --git a/VectoCore/Models/Connector/Ports/IFvPort.cs b/VectoCore/Models/Connector/Ports/IFvPort.cs index be93fc7fc79967d9385dd2454f131fffa33e3618..8a3c37dd6b584bdbe1ddc885221ba1be119cbb98 100644 --- a/VectoCore/Models/Connector/Ports/IFvPort.cs +++ b/VectoCore/Models/Connector/Ports/IFvPort.cs @@ -1,4 +1,20 @@ -using System; +/* +* Copyright 2015 European Union +* +* Licensed under the EUPL (the "Licence"); +* You may not use this work except in compliance with the Licence. +* You may obtain a copy of the Licence at: +* +* http://ec.europa.eu/idabc/eupl5 +* +* Unless required by applicable law or agreed to in writing, software +* distributed under the Licence is distributed on an "AS IS" basis, +* WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. +* See the Licence for the specific language governing permissions and +* limitations under the Licence. +*/ + +using System; using TUGraz.VectoCore.Utils; namespace TUGraz.VectoCore.Models.Connector.Ports diff --git a/VectoCore/Models/Connector/Ports/IResponse.cs b/VectoCore/Models/Connector/Ports/IResponse.cs index f45df78813ebd0612f0492bef1c595dee399b5c9..4515ba0a9665328ead8f9224787deb2365d61dc0 100644 --- a/VectoCore/Models/Connector/Ports/IResponse.cs +++ b/VectoCore/Models/Connector/Ports/IResponse.cs @@ -1,3 +1,19 @@ +/* +* Copyright 2015 European Union +* +* Licensed under the EUPL (the "Licence"); +* You may not use this work except in compliance with the Licence. +* You may obtain a copy of the Licence at: +* +* http://ec.europa.eu/idabc/eupl5 +* +* Unless required by applicable law or agreed to in writing, software +* distributed under the Licence is distributed on an "AS IS" basis, +* WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. +* See the Licence for the specific language governing permissions and +* limitations under the Licence. +*/ + using System; using System.Diagnostics; using System.Security.Cryptography.X509Certificates; diff --git a/VectoCore/Models/Connector/Ports/ISimulationPort.cs b/VectoCore/Models/Connector/Ports/ISimulationPort.cs index f1ae591529e942006c253c3dc494ad2758f4df88..04837f8bebb514becdf50b41667a82b2969758a4 100644 --- a/VectoCore/Models/Connector/Ports/ISimulationPort.cs +++ b/VectoCore/Models/Connector/Ports/ISimulationPort.cs @@ -1,3 +1,19 @@ +/* +* Copyright 2015 European Union +* +* Licensed under the EUPL (the "Licence"); +* You may not use this work except in compliance with the Licence. +* You may obtain a copy of the Licence at: +* +* http://ec.europa.eu/idabc/eupl5 +* +* Unless required by applicable law or agreed to in writing, software +* distributed under the Licence is distributed on an "AS IS" basis, +* WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. +* See the Licence for the specific language governing permissions and +* limitations under the Licence. +*/ + using System; using TUGraz.VectoCore.Utils; diff --git a/VectoCore/Models/Connector/Ports/ITnPort.cs b/VectoCore/Models/Connector/Ports/ITnPort.cs index 17690e1dc5d1b7fb2f95e2fb0edb97efdeed8e88..9ddeb54f4fdade9829dd222554a2c1717dd705fa 100644 --- a/VectoCore/Models/Connector/Ports/ITnPort.cs +++ b/VectoCore/Models/Connector/Ports/ITnPort.cs @@ -1,4 +1,20 @@ -using TUGraz.VectoCore.Utils; +/* +* Copyright 2015 European Union +* +* Licensed under the EUPL (the "Licence"); +* You may not use this work except in compliance with the Licence. +* You may obtain a copy of the Licence at: +* +* http://ec.europa.eu/idabc/eupl5 +* +* Unless required by applicable law or agreed to in writing, software +* distributed under the Licence is distributed on an "AS IS" basis, +* WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. +* See the Licence for the specific language governing permissions and +* limitations under the Licence. +*/ + +using TUGraz.VectoCore.Utils; namespace TUGraz.VectoCore.Models.Connector.Ports { diff --git a/VectoCore/Models/Connector/Ports/Impl/Response.cs b/VectoCore/Models/Connector/Ports/Impl/Response.cs index f7bd2afe1e9a97dcb4517b0a54c387ab1074335a..158794d5a93880efc1cef77845201a892e1841a8 100644 --- a/VectoCore/Models/Connector/Ports/Impl/Response.cs +++ b/VectoCore/Models/Connector/Ports/Impl/Response.cs @@ -1,3 +1,19 @@ +/* +* Copyright 2015 European Union +* +* Licensed under the EUPL (the "Licence"); +* You may not use this work except in compliance with the Licence. +* You may obtain a copy of the Licence at: +* +* http://ec.europa.eu/idabc/eupl5 +* +* Unless required by applicable law or agreed to in writing, software +* distributed under the Licence is distributed on an "AS IS" basis, +* WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. +* See the Licence for the specific language governing permissions and +* limitations under the Licence. +*/ + using System; using System.Linq; using TUGraz.VectoCore.Models.SimulationComponent; diff --git a/VectoCore/Models/Declaration/AirDrag.cs b/VectoCore/Models/Declaration/AirDrag.cs index 1e1d886ba788f4485e8010f375b7baf9d9baff62..6e274338364665f4ad547e18498a291890c66987 100644 --- a/VectoCore/Models/Declaration/AirDrag.cs +++ b/VectoCore/Models/Declaration/AirDrag.cs @@ -1,3 +1,19 @@ +/* +* Copyright 2015 European Union +* +* Licensed under the EUPL (the "Licence"); +* You may not use this work except in compliance with the Licence. +* You may obtain a copy of the Licence at: +* +* http://ec.europa.eu/idabc/eupl5 +* +* Unless required by applicable law or agreed to in writing, software +* distributed under the Licence is distributed on an "AS IS" basis, +* WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. +* See the Licence for the specific language governing permissions and +* limitations under the Licence. +*/ + using System; using System.Data; using System.Linq; diff --git a/VectoCore/Models/Declaration/Axle.cs b/VectoCore/Models/Declaration/Axle.cs index 6e06fdb374367a12aa4d47a9baf3a0933f5fca8f..995f76aa7f36137701b477fe2b349be7e6b7d9ed 100644 --- a/VectoCore/Models/Declaration/Axle.cs +++ b/VectoCore/Models/Declaration/Axle.cs @@ -1,3 +1,19 @@ +/* +* Copyright 2015 European Union +* +* Licensed under the EUPL (the "Licence"); +* You may not use this work except in compliance with the Licence. +* You may obtain a copy of the Licence at: +* +* http://ec.europa.eu/idabc/eupl5 +* +* Unless required by applicable law or agreed to in writing, software +* distributed under the Licence is distributed on an "AS IS" basis, +* WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. +* See the Licence for the specific language governing permissions and +* limitations under the Licence. +*/ + using TUGraz.VectoCore.Utils; namespace TUGraz.VectoCore.Models.Declaration diff --git a/VectoCore/Models/Declaration/AxleConfiguration.cs b/VectoCore/Models/Declaration/AxleConfiguration.cs index 72f74a7a63af430080931ff496c2469d0cbce4d7..18731c19e9a436dbf9431a00bb51524f506a621f 100644 --- a/VectoCore/Models/Declaration/AxleConfiguration.cs +++ b/VectoCore/Models/Declaration/AxleConfiguration.cs @@ -1,3 +1,19 @@ +/* +* Copyright 2015 European Union +* +* Licensed under the EUPL (the "Licence"); +* You may not use this work except in compliance with the Licence. +* You may obtain a copy of the Licence at: +* +* http://ec.europa.eu/idabc/eupl5 +* +* Unless required by applicable law or agreed to in writing, software +* distributed under the Licence is distributed on an "AS IS" basis, +* WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. +* See the Licence for the specific language governing permissions and +* limitations under the Licence. +*/ + using System; using TUGraz.VectoCore.Utils; using TUGraz.VectoCore.Models.SimulationComponent.Data; diff --git a/VectoCore/Models/Declaration/DeclarationData.cs b/VectoCore/Models/Declaration/DeclarationData.cs index 5f60890c344c93ed198ac1468bfc3d644ad3170a..7d6b327f4b35c0b6666617b958fbfa73d8c11cb6 100644 --- a/VectoCore/Models/Declaration/DeclarationData.cs +++ b/VectoCore/Models/Declaration/DeclarationData.cs @@ -1,4 +1,20 @@ -using System; +/* +* Copyright 2015 European Union +* +* Licensed under the EUPL (the "Licence"); +* You may not use this work except in compliance with the Licence. +* You may obtain a copy of the Licence at: +* +* http://ec.europa.eu/idabc/eupl5 +* +* Unless required by applicable law or agreed to in writing, software +* distributed under the Licence is distributed on an "AS IS" basis, +* WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. +* See the Licence for the specific language governing permissions and +* limitations under the Licence. +*/ + +using System; using System.Collections.Generic; using TUGraz.VectoCore.Configuration; using TUGraz.VectoCore.Models.SimulationComponent.Data; diff --git a/VectoCore/Models/Declaration/DeclarationReport.cs b/VectoCore/Models/Declaration/DeclarationReport.cs index 512bfcfc6b5a7d0186192718c240a5f00f130b03..37edd85cb3c8b8671d45a7232a70593cc05ee800 100644 --- a/VectoCore/Models/Declaration/DeclarationReport.cs +++ b/VectoCore/Models/Declaration/DeclarationReport.cs @@ -1,4 +1,20 @@ -using System; +/* +* Copyright 2015 European Union +* +* Licensed under the EUPL (the "Licence"); +* You may not use this work except in compliance with the Licence. +* You may obtain a copy of the Licence at: +* +* http://ec.europa.eu/idabc/eupl5 +* +* Unless required by applicable law or agreed to in writing, software +* distributed under the Licence is distributed on an "AS IS" basis, +* WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. +* See the Licence for the specific language governing permissions and +* limitations under the Licence. +*/ + +using System; using iTextSharp.text; using iTextSharp.text.pdf; using System.Collections.Generic; diff --git a/VectoCore/Models/Declaration/DeclarationRims.cs b/VectoCore/Models/Declaration/DeclarationRims.cs index 0da82d3dfc22dcfd4c908f8981e5ea5612219f2a..41e3287f8d9ce0fb9f3fc1b2fd0d99da13d02605 100644 --- a/VectoCore/Models/Declaration/DeclarationRims.cs +++ b/VectoCore/Models/Declaration/DeclarationRims.cs @@ -1,4 +1,20 @@ -using System.Data; +/* +* Copyright 2015 European Union +* +* Licensed under the EUPL (the "Licence"); +* You may not use this work except in compliance with the Licence. +* You may obtain a copy of the Licence at: +* +* http://ec.europa.eu/idabc/eupl5 +* +* Unless required by applicable law or agreed to in writing, software +* distributed under the Licence is distributed on an "AS IS" basis, +* WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. +* See the Licence for the specific language governing permissions and +* limitations under the Licence. +*/ + +using System.Data; using System.Linq; using TUGraz.VectoCore.Utils; diff --git a/VectoCore/Models/Declaration/ElectricSystem.cs b/VectoCore/Models/Declaration/ElectricSystem.cs index e3797e4932c7f21cdb6fdc2b32f4b63b1d26df94..c7380483cb931513208ff2f21d474cee441fe43d 100644 --- a/VectoCore/Models/Declaration/ElectricSystem.cs +++ b/VectoCore/Models/Declaration/ElectricSystem.cs @@ -1,3 +1,19 @@ +/* +* Copyright 2015 European Union +* +* Licensed under the EUPL (the "Licence"); +* You may not use this work except in compliance with the Licence. +* You may obtain a copy of the Licence at: +* +* http://ec.europa.eu/idabc/eupl5 +* +* Unless required by applicable law or agreed to in writing, software +* distributed under the Licence is distributed on an "AS IS" basis, +* WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. +* See the Licence for the specific language governing permissions and +* limitations under the Licence. +*/ + using System; using System.Collections.Generic; using System.Data; diff --git a/VectoCore/Models/Declaration/Fan.cs b/VectoCore/Models/Declaration/Fan.cs index e230aef301258049b7c01c292432d27115e030e7..abd95c00a000ea95e49bc82b64b36d3533ff12c1 100644 --- a/VectoCore/Models/Declaration/Fan.cs +++ b/VectoCore/Models/Declaration/Fan.cs @@ -1,3 +1,19 @@ +/* +* Copyright 2015 European Union +* +* Licensed under the EUPL (the "Licence"); +* You may not use this work except in compliance with the Licence. +* You may obtain a copy of the Licence at: +* +* http://ec.europa.eu/idabc/eupl5 +* +* Unless required by applicable law or agreed to in writing, software +* distributed under the Licence is distributed on an "AS IS" basis, +* WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. +* See the Licence for the specific language governing permissions and +* limitations under the Licence. +*/ + using System; using System.Collections.Generic; using System.Data; diff --git a/VectoCore/Models/Declaration/HVAC.cs b/VectoCore/Models/Declaration/HVAC.cs index fea1c61391525135fdae0ccd9afe6f1fc767bce5..73327cafcce0aae6d0d2b12af60ce1594e6bde98 100644 --- a/VectoCore/Models/Declaration/HVAC.cs +++ b/VectoCore/Models/Declaration/HVAC.cs @@ -1,3 +1,19 @@ +/* +* Copyright 2015 European Union +* +* Licensed under the EUPL (the "Licence"); +* You may not use this work except in compliance with the Licence. +* You may obtain a copy of the Licence at: +* +* http://ec.europa.eu/idabc/eupl5 +* +* Unless required by applicable law or agreed to in writing, software +* distributed under the Licence is distributed on an "AS IS" basis, +* WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. +* See the Licence for the specific language governing permissions and +* limitations under the Licence. +*/ + using System; using System.Collections.Generic; using System.Data; diff --git a/VectoCore/Models/Declaration/LookupData.cs b/VectoCore/Models/Declaration/LookupData.cs index 3f192547fdbdbaceccbdbd715a6e89699e68fcb7..927a3ea2a35e84d3e71b535df818bf344ac12418 100644 --- a/VectoCore/Models/Declaration/LookupData.cs +++ b/VectoCore/Models/Declaration/LookupData.cs @@ -1,4 +1,20 @@ -using System.Collections.Generic; +/* +* Copyright 2015 European Union +* +* Licensed under the EUPL (the "Licence"); +* You may not use this work except in compliance with the Licence. +* You may obtain a copy of the Licence at: +* +* http://ec.europa.eu/idabc/eupl5 +* +* Unless required by applicable law or agreed to in writing, software +* distributed under the Licence is distributed on an "AS IS" basis, +* WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. +* See the Licence for the specific language governing permissions and +* limitations under the Licence. +*/ + +using System.Collections.Generic; using System.Data; using TUGraz.VectoCore.Utils; diff --git a/VectoCore/Models/Declaration/Mission.cs b/VectoCore/Models/Declaration/Mission.cs index 9e303beb061e7991b8c7703b380fa746174148f0..40b62b67ab74b9bea14ab00c49043c31c03cec0b 100644 --- a/VectoCore/Models/Declaration/Mission.cs +++ b/VectoCore/Models/Declaration/Mission.cs @@ -1,4 +1,20 @@ -using System.Collections.Generic; +/* +* Copyright 2015 European Union +* +* Licensed under the EUPL (the "Licence"); +* You may not use this work except in compliance with the Licence. +* You may obtain a copy of the Licence at: +* +* http://ec.europa.eu/idabc/eupl5 +* +* Unless required by applicable law or agreed to in writing, software +* distributed under the Licence is distributed on an "AS IS" basis, +* WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. +* See the Licence for the specific language governing permissions and +* limitations under the Licence. +*/ + +using System.Collections.Generic; using System.IO; using TUGraz.VectoCore.Utils; diff --git a/VectoCore/Models/Declaration/MissionType.cs b/VectoCore/Models/Declaration/MissionType.cs index eb1604b9ca26411adde7609f01890e1383c2e91d..ce1210053cc3803fa9affb905250625fc8348722 100644 --- a/VectoCore/Models/Declaration/MissionType.cs +++ b/VectoCore/Models/Declaration/MissionType.cs @@ -1,4 +1,20 @@ -namespace TUGraz.VectoCore.Models.Declaration +/* +* Copyright 2015 European Union +* +* Licensed under the EUPL (the "Licence"); +* You may not use this work except in compliance with the Licence. +* You may obtain a copy of the Licence at: +* +* http://ec.europa.eu/idabc/eupl5 +* +* Unless required by applicable law or agreed to in writing, software +* distributed under the Licence is distributed on an "AS IS" basis, +* WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. +* See the Licence for the specific language governing permissions and +* limitations under the Licence. +*/ + +namespace TUGraz.VectoCore.Models.Declaration { public enum MissionType { diff --git a/VectoCore/Models/Declaration/PT1.cs b/VectoCore/Models/Declaration/PT1.cs index 0e3bfa13ce533b49fd1dffe89facf503e0488773..0072d825d79d1b094b4a4f6464ac577b5d7263fb 100644 --- a/VectoCore/Models/Declaration/PT1.cs +++ b/VectoCore/Models/Declaration/PT1.cs @@ -1,3 +1,19 @@ +/* +* Copyright 2015 European Union +* +* Licensed under the EUPL (the "Licence"); +* You may not use this work except in compliance with the Licence. +* You may obtain a copy of the Licence at: +* +* http://ec.europa.eu/idabc/eupl5 +* +* Unless required by applicable law or agreed to in writing, software +* distributed under the Licence is distributed on an "AS IS" basis, +* WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. +* See the Licence for the specific language governing permissions and +* limitations under the Licence. +*/ + using System.Collections.Generic; using System.Data; using System.Linq; diff --git a/VectoCore/Models/Declaration/PneumaticSystem.cs b/VectoCore/Models/Declaration/PneumaticSystem.cs index e1dcb6fd9ada746e007717c4602522962f760870..372e998293b4f83718e7b4da3c57f852570f73e6 100644 --- a/VectoCore/Models/Declaration/PneumaticSystem.cs +++ b/VectoCore/Models/Declaration/PneumaticSystem.cs @@ -1,3 +1,19 @@ +/* +* Copyright 2015 European Union +* +* Licensed under the EUPL (the "Licence"); +* You may not use this work except in compliance with the Licence. +* You may obtain a copy of the Licence at: +* +* http://ec.europa.eu/idabc/eupl5 +* +* Unless required by applicable law or agreed to in writing, software +* distributed under the Licence is distributed on an "AS IS" basis, +* WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. +* See the Licence for the specific language governing permissions and +* limitations under the Licence. +*/ + using System; using System.Collections.Generic; using System.Data; diff --git a/VectoCore/Models/Declaration/Rims.cs b/VectoCore/Models/Declaration/Rims.cs index e36162a78d4cd9d5119fddbe295d2d175f628dfb..e0bec5b5425476f81d0dafa1147ad2252b7b0a70 100644 --- a/VectoCore/Models/Declaration/Rims.cs +++ b/VectoCore/Models/Declaration/Rims.cs @@ -1,4 +1,20 @@ -using System.Data; +/* +* Copyright 2015 European Union +* +* Licensed under the EUPL (the "Licence"); +* You may not use this work except in compliance with the Licence. +* You may obtain a copy of the Licence at: +* +* http://ec.europa.eu/idabc/eupl5 +* +* Unless required by applicable law or agreed to in writing, software +* distributed under the Licence is distributed on an "AS IS" basis, +* WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. +* See the Licence for the specific language governing permissions and +* limitations under the Licence. +*/ + +using System.Data; using System.Linq; using TUGraz.VectoCore.Utils; diff --git a/VectoCore/Models/Declaration/Segment.cs b/VectoCore/Models/Declaration/Segment.cs index 55521c212ec9ded83cfd70f954ba871a17e42272..96d0618500faca249b30cda006fae6f92e839043 100644 --- a/VectoCore/Models/Declaration/Segment.cs +++ b/VectoCore/Models/Declaration/Segment.cs @@ -1,4 +1,20 @@ -using System.IO; +/* +* Copyright 2015 European Union +* +* Licensed under the EUPL (the "Licence"); +* You may not use this work except in compliance with the Licence. +* You may obtain a copy of the Licence at: +* +* http://ec.europa.eu/idabc/eupl5 +* +* Unless required by applicable law or agreed to in writing, software +* distributed under the Licence is distributed on an "AS IS" basis, +* WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. +* See the Licence for the specific language governing permissions and +* limitations under the Licence. +*/ + +using System.IO; using TUGraz.VectoCore.Utils; namespace TUGraz.VectoCore.Models.Declaration diff --git a/VectoCore/Models/Declaration/Segments.cs b/VectoCore/Models/Declaration/Segments.cs index ae61bdeb2dc5e7b6988863ba2112fca6b751de32..6fc0b8ba2e5931b4ce23a26f0cb4573996a1d7d1 100644 --- a/VectoCore/Models/Declaration/Segments.cs +++ b/VectoCore/Models/Declaration/Segments.cs @@ -1,3 +1,19 @@ +/* +* Copyright 2015 European Union +* +* Licensed under the EUPL (the "Licence"); +* You may not use this work except in compliance with the Licence. +* You may obtain a copy of the Licence at: +* +* http://ec.europa.eu/idabc/eupl5 +* +* Unless required by applicable law or agreed to in writing, software +* distributed under the Licence is distributed on an "AS IS" basis, +* WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. +* See the Licence for the specific language governing permissions and +* limitations under the Licence. +*/ + using System; using System.Collections.Generic; using System.Data; diff --git a/VectoCore/Models/Declaration/SteeringPump.cs b/VectoCore/Models/Declaration/SteeringPump.cs index f3be76e5fbb49bf1f05c533b85c55a4674596649..bdfca6973ef2ac269abfdb0b3551f9f92600ea59 100644 --- a/VectoCore/Models/Declaration/SteeringPump.cs +++ b/VectoCore/Models/Declaration/SteeringPump.cs @@ -1,4 +1,20 @@ -using System; +/* +* Copyright 2015 European Union +* +* Licensed under the EUPL (the "Licence"); +* You may not use this work except in compliance with the Licence. +* You may obtain a copy of the Licence at: +* +* http://ec.europa.eu/idabc/eupl5 +* +* Unless required by applicable law or agreed to in writing, software +* distributed under the Licence is distributed on an "AS IS" basis, +* WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. +* See the Licence for the specific language governing permissions and +* limitations under the Licence. +*/ + +using System; using System.Collections.Generic; using System.Data; using System.Linq; diff --git a/VectoCore/Models/Declaration/TorqueConverter.cs b/VectoCore/Models/Declaration/TorqueConverter.cs index 005b4b9191fbc279be2e27e4d3ab4281c68b77cb..86b12df338392d85ff2edc84e34a4d881c4d01c7 100644 --- a/VectoCore/Models/Declaration/TorqueConverter.cs +++ b/VectoCore/Models/Declaration/TorqueConverter.cs @@ -1,3 +1,19 @@ +/* +* Copyright 2015 European Union +* +* Licensed under the EUPL (the "Licence"); +* You may not use this work except in compliance with the Licence. +* You may obtain a copy of the Licence at: +* +* http://ec.europa.eu/idabc/eupl5 +* +* Unless required by applicable law or agreed to in writing, software +* distributed under the Licence is distributed on an "AS IS" basis, +* WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. +* See the Licence for the specific language governing permissions and +* limitations under the Licence. +*/ + using System; using System.Data; using TUGraz.VectoCore.Utils; diff --git a/VectoCore/Models/Declaration/VehicleCategory.cs b/VectoCore/Models/Declaration/VehicleCategory.cs index edc35cae10d80bdb76373e6cda7518d539bfe98f..88bdd9b991555797becb33dff0a1d8c9f41bef24 100644 --- a/VectoCore/Models/Declaration/VehicleCategory.cs +++ b/VectoCore/Models/Declaration/VehicleCategory.cs @@ -1,3 +1,19 @@ +/* +* Copyright 2015 European Union +* +* Licensed under the EUPL (the "Licence"); +* You may not use this work except in compliance with the Licence. +* You may obtain a copy of the Licence at: +* +* http://ec.europa.eu/idabc/eupl5 +* +* Unless required by applicable law or agreed to in writing, software +* distributed under the Licence is distributed on an "AS IS" basis, +* WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. +* See the Licence for the specific language governing permissions and +* limitations under the Licence. +*/ + namespace TUGraz.VectoCore.Models.Declaration { public enum VehicleCategory diff --git a/VectoCore/Models/Declaration/VehicleClass.cs b/VectoCore/Models/Declaration/VehicleClass.cs index d87c74588530a78d45cecea546915500c03d24a1..8867ac434ddd1cfb88aa4c09aabaa8c2a1d28d05 100644 --- a/VectoCore/Models/Declaration/VehicleClass.cs +++ b/VectoCore/Models/Declaration/VehicleClass.cs @@ -1,3 +1,19 @@ +/* +* Copyright 2015 European Union +* +* Licensed under the EUPL (the "Licence"); +* You may not use this work except in compliance with the Licence. +* You may obtain a copy of the Licence at: +* +* http://ec.europa.eu/idabc/eupl5 +* +* Unless required by applicable law or agreed to in writing, software +* distributed under the Licence is distributed on an "AS IS" basis, +* WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. +* See the Licence for the specific language governing permissions and +* limitations under the Licence. +*/ + using TUGraz.VectoCore.Utils; namespace TUGraz.VectoCore.Models.Declaration diff --git a/VectoCore/Models/Declaration/WHTCCorrection.cs b/VectoCore/Models/Declaration/WHTCCorrection.cs index 18967378f26330f42cd440b9b16731337fc421a7..3cdf29a46fb146e5b995350c4c74f0bb63ca5c3f 100644 --- a/VectoCore/Models/Declaration/WHTCCorrection.cs +++ b/VectoCore/Models/Declaration/WHTCCorrection.cs @@ -1,4 +1,20 @@ -using System; +/* +* Copyright 2015 European Union +* +* Licensed under the EUPL (the "Licence"); +* You may not use this work except in compliance with the Licence. +* You may obtain a copy of the Licence at: +* +* http://ec.europa.eu/idabc/eupl5 +* +* Unless required by applicable law or agreed to in writing, software +* distributed under the Licence is distributed on an "AS IS" basis, +* WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. +* See the Licence for the specific language governing permissions and +* limitations under the Licence. +*/ + +using System; using System.Collections.Generic; using System.Data; using System.Linq; diff --git a/VectoCore/Models/Declaration/Wheels.cs b/VectoCore/Models/Declaration/Wheels.cs index c6b92d7f56568ef1a856f02842e61f724ab09a72..5b9bb8c5ea0b8b343ac835fdf79a0de6cfc1f757 100644 --- a/VectoCore/Models/Declaration/Wheels.cs +++ b/VectoCore/Models/Declaration/Wheels.cs @@ -1,4 +1,20 @@ -using System.Data; +/* +* Copyright 2015 European Union +* +* Licensed under the EUPL (the "Licence"); +* You may not use this work except in compliance with the Licence. +* You may obtain a copy of the Licence at: +* +* http://ec.europa.eu/idabc/eupl5 +* +* Unless required by applicable law or agreed to in writing, software +* distributed under the Licence is distributed on an "AS IS" basis, +* WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. +* See the Licence for the specific language governing permissions and +* limitations under the Licence. +*/ + +using System.Data; using System.Linq; using TUGraz.VectoCore.Utils; diff --git a/VectoCore/Models/LoggingObject.cs b/VectoCore/Models/LoggingObject.cs index d1eb9209907bc908cb8416e3bdd8382e13263d09..7ec83b92c5465ef922d899defacff1cd38c8a136 100644 --- a/VectoCore/Models/LoggingObject.cs +++ b/VectoCore/Models/LoggingObject.cs @@ -1,4 +1,20 @@ -using NLog; +/* +* Copyright 2015 European Union +* +* Licensed under the EUPL (the "Licence"); +* You may not use this work except in compliance with the Licence. +* You may obtain a copy of the Licence at: +* +* http://ec.europa.eu/idabc/eupl5 +* +* Unless required by applicable law or agreed to in writing, software +* distributed under the Licence is distributed on an "AS IS" basis, +* WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. +* See the Licence for the specific language governing permissions and +* limitations under the Licence. +*/ + +using NLog; namespace TUGraz.VectoCore.Models { diff --git a/VectoCore/Models/Simulation/Data/AuxiliaryDemandType.cs b/VectoCore/Models/Simulation/Data/AuxiliaryDemandType.cs index 56a0a78138d09ac7ab406f694d0f6c6a7d3f6de5..6535228441608729511ffa01e14db6d2944b3e2f 100644 --- a/VectoCore/Models/Simulation/Data/AuxiliaryDemandType.cs +++ b/VectoCore/Models/Simulation/Data/AuxiliaryDemandType.cs @@ -1,4 +1,20 @@ -namespace TUGraz.VectoCore.Models.Simulation.Data +/* +* Copyright 2015 European Union +* +* Licensed under the EUPL (the "Licence"); +* You may not use this work except in compliance with the Licence. +* You may obtain a copy of the Licence at: +* +* http://ec.europa.eu/idabc/eupl5 +* +* Unless required by applicable law or agreed to in writing, software +* distributed under the Licence is distributed on an "AS IS" basis, +* WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. +* See the Licence for the specific language governing permissions and +* limitations under the Licence. +*/ + +namespace TUGraz.VectoCore.Models.Simulation.Data { public enum AuxiliaryDemandType { diff --git a/VectoCore/Models/Simulation/Data/IModalDataWriter.cs b/VectoCore/Models/Simulation/Data/IModalDataWriter.cs index f4036469d6fdc84329363408942253c74db76c27..dd8a3143336e062548cab2ca0dc88d8b148683c5 100644 --- a/VectoCore/Models/Simulation/Data/IModalDataWriter.cs +++ b/VectoCore/Models/Simulation/Data/IModalDataWriter.cs @@ -1,3 +1,19 @@ +/* +* Copyright 2015 European Union +* +* Licensed under the EUPL (the "Licence"); +* You may not use this work except in compliance with the Licence. +* You may obtain a copy of the Licence at: +* +* http://ec.europa.eu/idabc/eupl5 +* +* Unless required by applicable law or agreed to in writing, software +* distributed under the Licence is distributed on an "AS IS" basis, +* WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. +* See the Licence for the specific language governing permissions and +* limitations under the Licence. +*/ + using System; using System.Collections.Generic; using System.Data; diff --git a/VectoCore/Models/Simulation/Data/ModalDataWriter.cs b/VectoCore/Models/Simulation/Data/ModalDataWriter.cs index 6f115ba991a39ee3b9d006c8d5ad466ff6530acc..7c5bef2458a04d1b0c683fe84a3ae3194d87495a 100644 --- a/VectoCore/Models/Simulation/Data/ModalDataWriter.cs +++ b/VectoCore/Models/Simulation/Data/ModalDataWriter.cs @@ -1,4 +1,20 @@ -using System; +/* +* Copyright 2015 European Union +* +* Licensed under the EUPL (the "Licence"); +* You may not use this work except in compliance with the Licence. +* You may obtain a copy of the Licence at: +* +* http://ec.europa.eu/idabc/eupl5 +* +* Unless required by applicable law or agreed to in writing, software +* distributed under the Licence is distributed on an "AS IS" basis, +* WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. +* See the Licence for the specific language governing permissions and +* limitations under the Licence. +*/ + +using System; using System.Collections.Generic; using System.Data; using System.Linq; diff --git a/VectoCore/Models/Simulation/Data/ModalResult.cs b/VectoCore/Models/Simulation/Data/ModalResult.cs index 27d588e1043a9070b9f56058921de86812e093ff..f8a0c01815b0a8a815001bd55aec2aec5bab63c2 100644 --- a/VectoCore/Models/Simulation/Data/ModalResult.cs +++ b/VectoCore/Models/Simulation/Data/ModalResult.cs @@ -1,3 +1,19 @@ +/* +* Copyright 2015 European Union +* +* Licensed under the EUPL (the "Licence"); +* You may not use this work except in compliance with the Licence. +* You may obtain a copy of the Licence at: +* +* http://ec.europa.eu/idabc/eupl5 +* +* Unless required by applicable law or agreed to in writing, software +* distributed under the Licence is distributed on an "AS IS" basis, +* WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. +* See the Licence for the specific language governing permissions and +* limitations under the Licence. +*/ + using System; using System.CodeDom; using System.ComponentModel; diff --git a/VectoCore/Models/Simulation/Data/SummaryFileWriter.cs b/VectoCore/Models/Simulation/Data/SummaryFileWriter.cs index cd355ebc560051bbf0aa6d4b3f4c96a5509d104d..89e7c7d91db91d450dfbb516fbf1710364a5e36a 100644 --- a/VectoCore/Models/Simulation/Data/SummaryFileWriter.cs +++ b/VectoCore/Models/Simulation/Data/SummaryFileWriter.cs @@ -1,4 +1,20 @@ -using System.Collections.Generic; +/* +* Copyright 2015 European Union +* +* Licensed under the EUPL (the "Licence"); +* You may not use this work except in compliance with the Licence. +* You may obtain a copy of the Licence at: +* +* http://ec.europa.eu/idabc/eupl5 +* +* Unless required by applicable law or agreed to in writing, software +* distributed under the Licence is distributed on an "AS IS" basis, +* WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. +* See the Licence for the specific language governing permissions and +* limitations under the Licence. +*/ + +using System.Collections.Generic; using System.Data; using System.Linq; using System.Runtime.CompilerServices; diff --git a/VectoCore/Models/Simulation/Data/VectoJobData.cs b/VectoCore/Models/Simulation/Data/VectoJobData.cs index d36e84b740da2f83a371a61807ca8c8f2513b33c..2c1cf950fae882a80ea61519e4e4bb521ea05793 100644 --- a/VectoCore/Models/Simulation/Data/VectoJobData.cs +++ b/VectoCore/Models/Simulation/Data/VectoJobData.cs @@ -1,4 +1,20 @@ -using System; +/* +* Copyright 2015 European Union +* +* Licensed under the EUPL (the "Licence"); +* You may not use this work except in compliance with the Licence. +* You may obtain a copy of the Licence at: +* +* http://ec.europa.eu/idabc/eupl5 +* +* Unless required by applicable law or agreed to in writing, software +* distributed under the Licence is distributed on an "AS IS" basis, +* WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. +* See the Licence for the specific language governing permissions and +* limitations under the Licence. +*/ + +using System; using System.Collections.Generic; using System.IO; using System.Runtime.Serialization; diff --git a/VectoCore/Models/Simulation/Data/VectoRunData.cs b/VectoCore/Models/Simulation/Data/VectoRunData.cs index 2237d4ec074816cf68a48bab2e33567290e7373c..7b87181fc85f618ee58e8241ba69da27b67310be 100644 --- a/VectoCore/Models/Simulation/Data/VectoRunData.cs +++ b/VectoCore/Models/Simulation/Data/VectoRunData.cs @@ -1,4 +1,20 @@ -using System.Collections.Generic; +/* +* Copyright 2015 European Union +* +* Licensed under the EUPL (the "Licence"); +* You may not use this work except in compliance with the Licence. +* You may obtain a copy of the Licence at: +* +* http://ec.europa.eu/idabc/eupl5 +* +* Unless required by applicable law or agreed to in writing, software +* distributed under the Licence is distributed on an "AS IS" basis, +* WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. +* See the Licence for the specific language governing permissions and +* limitations under the Licence. +*/ + +using System.Collections.Generic; using System.Runtime.Serialization; using TUGraz.VectoCore.Models.Declaration; using TUGraz.VectoCore.Models.SimulationComponent.Data; diff --git a/VectoCore/Models/Simulation/DataBus/IClutchInfo.cs b/VectoCore/Models/Simulation/DataBus/IClutchInfo.cs index 0598e9a5c6172d7a68df74c7f2a232d3f5ba581a..31b029599a99ff593e8b85b7fc21d3ffc2880a35 100644 --- a/VectoCore/Models/Simulation/DataBus/IClutchInfo.cs +++ b/VectoCore/Models/Simulation/DataBus/IClutchInfo.cs @@ -1,4 +1,20 @@ -using TUGraz.VectoCore.Utils; +/* +* Copyright 2015 European Union +* +* Licensed under the EUPL (the "Licence"); +* You may not use this work except in compliance with the Licence. +* You may obtain a copy of the Licence at: +* +* http://ec.europa.eu/idabc/eupl5 +* +* Unless required by applicable law or agreed to in writing, software +* distributed under the Licence is distributed on an "AS IS" basis, +* WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. +* See the Licence for the specific language governing permissions and +* limitations under the Licence. +*/ + +using TUGraz.VectoCore.Utils; namespace TUGraz.VectoCore.Models.Simulation.DataBus { diff --git a/VectoCore/Models/Simulation/DataBus/IDataBus.cs b/VectoCore/Models/Simulation/DataBus/IDataBus.cs index 39f00f8e768e7484ae8b6242697d3b9cb81bdc1c..b012afa72bff5f364d1db688adf612131a1b932f 100644 --- a/VectoCore/Models/Simulation/DataBus/IDataBus.cs +++ b/VectoCore/Models/Simulation/DataBus/IDataBus.cs @@ -1,4 +1,20 @@ -using TUGraz.VectoCore.Models.SimulationComponent; +/* +* Copyright 2015 European Union +* +* Licensed under the EUPL (the "Licence"); +* You may not use this work except in compliance with the Licence. +* You may obtain a copy of the Licence at: +* +* http://ec.europa.eu/idabc/eupl5 +* +* Unless required by applicable law or agreed to in writing, software +* distributed under the Licence is distributed on an "AS IS" basis, +* WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. +* See the Licence for the specific language governing permissions and +* limitations under the Licence. +*/ + +using TUGraz.VectoCore.Models.SimulationComponent; using TUGraz.VectoCore.Utils; namespace TUGraz.VectoCore.Models.Simulation.DataBus diff --git a/VectoCore/Models/Simulation/DataBus/IDriverInfo.cs b/VectoCore/Models/Simulation/DataBus/IDriverInfo.cs index 938284fb97afee720ae3decacf57b0304bddc637..7abd0062a9526d74b0a5d5eb87df7d8ac5b3129b 100644 --- a/VectoCore/Models/Simulation/DataBus/IDriverInfo.cs +++ b/VectoCore/Models/Simulation/DataBus/IDriverInfo.cs @@ -1,3 +1,19 @@ +/* +* Copyright 2015 European Union +* +* Licensed under the EUPL (the "Licence"); +* You may not use this work except in compliance with the Licence. +* You may obtain a copy of the Licence at: +* +* http://ec.europa.eu/idabc/eupl5 +* +* Unless required by applicable law or agreed to in writing, software +* distributed under the Licence is distributed on an "AS IS" basis, +* WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. +* See the Licence for the specific language governing permissions and +* limitations under the Licence. +*/ + using TUGraz.VectoCore.Utils; namespace TUGraz.VectoCore.Models.Simulation.DataBus diff --git a/VectoCore/Models/Simulation/DataBus/IEngineInfo.cs b/VectoCore/Models/Simulation/DataBus/IEngineInfo.cs index 68f93e975e5b79977eeffbd877ddebf3e060122e..203ddb97222bda02fcdfad7138fad0731c8508a1 100644 --- a/VectoCore/Models/Simulation/DataBus/IEngineInfo.cs +++ b/VectoCore/Models/Simulation/DataBus/IEngineInfo.cs @@ -1,4 +1,20 @@ -using TUGraz.VectoCore.Utils; +/* +* Copyright 2015 European Union +* +* Licensed under the EUPL (the "Licence"); +* You may not use this work except in compliance with the Licence. +* You may obtain a copy of the Licence at: +* +* http://ec.europa.eu/idabc/eupl5 +* +* Unless required by applicable law or agreed to in writing, software +* distributed under the Licence is distributed on an "AS IS" basis, +* WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. +* See the Licence for the specific language governing permissions and +* limitations under the Licence. +*/ + +using TUGraz.VectoCore.Utils; namespace TUGraz.VectoCore.Models.Simulation.DataBus { diff --git a/VectoCore/Models/Simulation/DataBus/IGearboxInfo.cs b/VectoCore/Models/Simulation/DataBus/IGearboxInfo.cs index 317b5b042a1e74e07bc60275e20529d3d36e02a4..7c174dd549a876d2d9b03c9b2f24e1696b6a59bc 100644 --- a/VectoCore/Models/Simulation/DataBus/IGearboxInfo.cs +++ b/VectoCore/Models/Simulation/DataBus/IGearboxInfo.cs @@ -1,4 +1,20 @@ -using TUGraz.VectoCore.Models.SimulationComponent.Data; +/* +* Copyright 2015 European Union +* +* Licensed under the EUPL (the "Licence"); +* You may not use this work except in compliance with the Licence. +* You may obtain a copy of the Licence at: +* +* http://ec.europa.eu/idabc/eupl5 +* +* Unless required by applicable law or agreed to in writing, software +* distributed under the Licence is distributed on an "AS IS" basis, +* WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. +* See the Licence for the specific language governing permissions and +* limitations under the Licence. +*/ + +using TUGraz.VectoCore.Models.SimulationComponent.Data; using TUGraz.VectoCore.Utils; namespace TUGraz.VectoCore.Models.Simulation.DataBus diff --git a/VectoCore/Models/Simulation/DataBus/IMileageCounter.cs b/VectoCore/Models/Simulation/DataBus/IMileageCounter.cs index 7e4a9db4767387e31b26b42a0049cd5198ff7c22..44ec73071d23557459801997a008f087822eea26 100644 --- a/VectoCore/Models/Simulation/DataBus/IMileageCounter.cs +++ b/VectoCore/Models/Simulation/DataBus/IMileageCounter.cs @@ -1,4 +1,20 @@ -using TUGraz.VectoCore.Utils; +/* +* Copyright 2015 European Union +* +* Licensed under the EUPL (the "Licence"); +* You may not use this work except in compliance with the Licence. +* You may obtain a copy of the Licence at: +* +* http://ec.europa.eu/idabc/eupl5 +* +* Unless required by applicable law or agreed to in writing, software +* distributed under the Licence is distributed on an "AS IS" basis, +* WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. +* See the Licence for the specific language governing permissions and +* limitations under the Licence. +*/ + +using TUGraz.VectoCore.Utils; namespace TUGraz.VectoCore.Models.Simulation.DataBus { diff --git a/VectoCore/Models/Simulation/DataBus/IRoadLookAhead.cs b/VectoCore/Models/Simulation/DataBus/IRoadLookAhead.cs index 04f1d1f8b06bdc07c1449155757b7d1aac0996d0..63489d02c7f559899343c0879aeba77d2b58e818 100644 --- a/VectoCore/Models/Simulation/DataBus/IRoadLookAhead.cs +++ b/VectoCore/Models/Simulation/DataBus/IRoadLookAhead.cs @@ -1,4 +1,20 @@ -using System.Collections.Generic; +/* +* Copyright 2015 European Union +* +* Licensed under the EUPL (the "Licence"); +* You may not use this work except in compliance with the Licence. +* You may obtain a copy of the Licence at: +* +* http://ec.europa.eu/idabc/eupl5 +* +* Unless required by applicable law or agreed to in writing, software +* distributed under the Licence is distributed on an "AS IS" basis, +* WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. +* See the Licence for the specific language governing permissions and +* limitations under the Licence. +*/ + +using System.Collections.Generic; using TUGraz.VectoCore.Models.SimulationComponent.Data; using TUGraz.VectoCore.Utils; diff --git a/VectoCore/Models/Simulation/DataBus/IVehicleInfo.cs b/VectoCore/Models/Simulation/DataBus/IVehicleInfo.cs index e3c6dbd53d5ba83a2ee97fc0ea80a6de3abacc63..32ce87949eac880a1e09bae1d025f4b4b1dfc6c1 100644 --- a/VectoCore/Models/Simulation/DataBus/IVehicleInfo.cs +++ b/VectoCore/Models/Simulation/DataBus/IVehicleInfo.cs @@ -1,4 +1,20 @@ -using TUGraz.VectoCore.Utils; +/* +* Copyright 2015 European Union +* +* Licensed under the EUPL (the "Licence"); +* You may not use this work except in compliance with the Licence. +* You may obtain a copy of the Licence at: +* +* http://ec.europa.eu/idabc/eupl5 +* +* Unless required by applicable law or agreed to in writing, software +* distributed under the Licence is distributed on an "AS IS" basis, +* WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. +* See the Licence for the specific language governing permissions and +* limitations under the Licence. +*/ + +using TUGraz.VectoCore.Utils; namespace TUGraz.VectoCore.Models.Simulation.DataBus { diff --git a/VectoCore/Models/Simulation/IVectoRun.cs b/VectoCore/Models/Simulation/IVectoRun.cs index 495adbe37346626d0b610487d39ae246737e6768..2fb5978b126366c45e30abef781e6f28fda6d8bb 100644 --- a/VectoCore/Models/Simulation/IVectoRun.cs +++ b/VectoCore/Models/Simulation/IVectoRun.cs @@ -1,3 +1,19 @@ +/* +* Copyright 2015 European Union +* +* Licensed under the EUPL (the "Licence"); +* You may not use this work except in compliance with the Licence. +* You may obtain a copy of the Licence at: +* +* http://ec.europa.eu/idabc/eupl5 +* +* Unless required by applicable law or agreed to in writing, software +* distributed under the Licence is distributed on an "AS IS" basis, +* WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. +* See the Licence for the specific language governing permissions and +* limitations under the Licence. +*/ + using System; using System.ComponentModel; diff --git a/VectoCore/Models/Simulation/IVehicleContainer.cs b/VectoCore/Models/Simulation/IVehicleContainer.cs index 3aa3a4974371537547abeff477ed7aa1b0bb68d8..adde728efe8a0f655551bece5d33d424aa577219 100644 --- a/VectoCore/Models/Simulation/IVehicleContainer.cs +++ b/VectoCore/Models/Simulation/IVehicleContainer.cs @@ -1,4 +1,20 @@ -using TUGraz.VectoCore.Models.Connector.Ports; +/* +* Copyright 2015 European Union +* +* Licensed under the EUPL (the "Licence"); +* You may not use this work except in compliance with the Licence. +* You may obtain a copy of the Licence at: +* +* http://ec.europa.eu/idabc/eupl5 +* +* Unless required by applicable law or agreed to in writing, software +* distributed under the Licence is distributed on an "AS IS" basis, +* WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. +* See the Licence for the specific language governing permissions and +* limitations under the Licence. +*/ + +using TUGraz.VectoCore.Models.Connector.Ports; using TUGraz.VectoCore.Models.Simulation.DataBus; using TUGraz.VectoCore.Models.Simulation.Impl; using TUGraz.VectoCore.Models.SimulationComponent; diff --git a/VectoCore/Models/Simulation/Impl/DistanceRun.cs b/VectoCore/Models/Simulation/Impl/DistanceRun.cs index 73f33ef975d9eab24e2295f3e9c28139013e7e47..a7dd9607d58eaaf880a89d53d730584b4b27dc9a 100644 --- a/VectoCore/Models/Simulation/Impl/DistanceRun.cs +++ b/VectoCore/Models/Simulation/Impl/DistanceRun.cs @@ -1,4 +1,20 @@ -using System; +/* +* Copyright 2015 European Union +* +* Licensed under the EUPL (the "Licence"); +* You may not use this work except in compliance with the Licence. +* You may obtain a copy of the Licence at: +* +* http://ec.europa.eu/idabc/eupl5 +* +* Unless required by applicable law or agreed to in writing, software +* distributed under the Licence is distributed on an "AS IS" basis, +* WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. +* See the Licence for the specific language governing permissions and +* limitations under the Licence. +*/ + +using System; using TUGraz.VectoCore.Configuration; using TUGraz.VectoCore.Exceptions; using TUGraz.VectoCore.Models.Connector.Ports; diff --git a/VectoCore/Models/Simulation/Impl/JobContainer.cs b/VectoCore/Models/Simulation/Impl/JobContainer.cs index 499a1f5edf7d8a565693f5882454f1b1de8f3ef5..b588888b7044d8a6ad55cedecd16a3b2d0ad67aa 100644 --- a/VectoCore/Models/Simulation/Impl/JobContainer.cs +++ b/VectoCore/Models/Simulation/Impl/JobContainer.cs @@ -1,3 +1,19 @@ +/* +* Copyright 2015 European Union +* +* Licensed under the EUPL (the "Licence"); +* You may not use this work except in compliance with the Licence. +* You may obtain a copy of the Licence at: +* +* http://ec.europa.eu/idabc/eupl5 +* +* Unless required by applicable law or agreed to in writing, software +* distributed under the Licence is distributed on an "AS IS" basis, +* WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. +* See the Licence for the specific language governing permissions and +* limitations under the Licence. +*/ + using System; using System.Collections.Generic; using System.ComponentModel; diff --git a/VectoCore/Models/Simulation/Impl/PowertrainBuilder.cs b/VectoCore/Models/Simulation/Impl/PowertrainBuilder.cs index 2075d3242abc3a051b8cdf5602889b0070624c81..db585e22828da9212605bdab977214488007475c 100644 --- a/VectoCore/Models/Simulation/Impl/PowertrainBuilder.cs +++ b/VectoCore/Models/Simulation/Impl/PowertrainBuilder.cs @@ -1,3 +1,19 @@ +/* +* Copyright 2015 European Union +* +* Licensed under the EUPL (the "Licence"); +* You may not use this work except in compliance with the Licence. +* You may obtain a copy of the Licence at: +* +* http://ec.europa.eu/idabc/eupl5 +* +* Unless required by applicable law or agreed to in writing, software +* distributed under the Licence is distributed on an "AS IS" basis, +* WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. +* See the Licence for the specific language governing permissions and +* limitations under the Licence. +*/ + using TUGraz.VectoCore.Exceptions; using TUGraz.VectoCore.Models.Connector.Ports; using TUGraz.VectoCore.Models.Simulation.Data; diff --git a/VectoCore/Models/Simulation/Impl/SimulatorFactory.cs b/VectoCore/Models/Simulation/Impl/SimulatorFactory.cs index 4093dcfea6f4ac5b61d3f21595bca8f46cd3842b..7f9db29f07f2b66a3aeaa695dd40bdffaf481795 100644 --- a/VectoCore/Models/Simulation/Impl/SimulatorFactory.cs +++ b/VectoCore/Models/Simulation/Impl/SimulatorFactory.cs @@ -1,3 +1,19 @@ +/* +* Copyright 2015 European Union +* +* Licensed under the EUPL (the "Licence"); +* You may not use this work except in compliance with the Licence. +* You may obtain a copy of the Licence at: +* +* http://ec.europa.eu/idabc/eupl5 +* +* Unless required by applicable law or agreed to in writing, software +* distributed under the Licence is distributed on an "AS IS" basis, +* WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. +* See the Licence for the specific language governing permissions and +* limitations under the Licence. +*/ + using System.Collections.Generic; using System.IO; using System.Reflection; diff --git a/VectoCore/Models/Simulation/Impl/TimeRun.cs b/VectoCore/Models/Simulation/Impl/TimeRun.cs index e97bab4dbb11ef9452b4769469f2f54eaea58997..453ee2f89393e57ebc00992897daa643ec42a457 100644 --- a/VectoCore/Models/Simulation/Impl/TimeRun.cs +++ b/VectoCore/Models/Simulation/Impl/TimeRun.cs @@ -1,4 +1,20 @@ -using TUGraz.VectoCore.Models.Connector.Ports; +/* +* Copyright 2015 European Union +* +* Licensed under the EUPL (the "Licence"); +* You may not use this work except in compliance with the Licence. +* You may obtain a copy of the Licence at: +* +* http://ec.europa.eu/idabc/eupl5 +* +* Unless required by applicable law or agreed to in writing, software +* distributed under the Licence is distributed on an "AS IS" basis, +* WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. +* See the Licence for the specific language governing permissions and +* limitations under the Licence. +*/ + +using TUGraz.VectoCore.Models.Connector.Ports; using TUGraz.VectoCore.Models.Connector.Ports.Impl; using TUGraz.VectoCore.Utils; diff --git a/VectoCore/Models/Simulation/Impl/VectoRun.cs b/VectoCore/Models/Simulation/Impl/VectoRun.cs index 5705c81e653ae67a2d88fdb067cabba87aa853b6..950dc218d9ec54945bc5f85c941b6aeb86dc3a63 100644 --- a/VectoCore/Models/Simulation/Impl/VectoRun.cs +++ b/VectoCore/Models/Simulation/Impl/VectoRun.cs @@ -1,4 +1,20 @@ -using System; +/* +* Copyright 2015 European Union +* +* Licensed under the EUPL (the "Licence"); +* You may not use this work except in compliance with the Licence. +* You may obtain a copy of the Licence at: +* +* http://ec.europa.eu/idabc/eupl5 +* +* Unless required by applicable law or agreed to in writing, software +* distributed under the Licence is distributed on an "AS IS" basis, +* WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. +* See the Licence for the specific language governing permissions and +* limitations under the Licence. +*/ + +using System; using System.ComponentModel; using TUGraz.VectoCore.Exceptions; using TUGraz.VectoCore.Models.Connector.Ports; diff --git a/VectoCore/Models/Simulation/Impl/VehicleContainer.cs b/VectoCore/Models/Simulation/Impl/VehicleContainer.cs index ee1fc5d51ce697c4bff4c718694a3437458e3acd..a5fe6a442f06e6ef30ca8737dc637b82cefee43a 100644 --- a/VectoCore/Models/Simulation/Impl/VehicleContainer.cs +++ b/VectoCore/Models/Simulation/Impl/VehicleContainer.cs @@ -1,4 +1,20 @@ -using System.Collections.Generic; +/* +* Copyright 2015 European Union +* +* Licensed under the EUPL (the "Licence"); +* You may not use this work except in compliance with the Licence. +* You may obtain a copy of the Licence at: +* +* http://ec.europa.eu/idabc/eupl5 +* +* Unless required by applicable law or agreed to in writing, software +* distributed under the Licence is distributed on an "AS IS" basis, +* WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. +* See the Licence for the specific language governing permissions and +* limitations under the Licence. +*/ + +using System.Collections.Generic; using System.Collections.ObjectModel; using System.Diagnostics; using TUGraz.VectoCore.Exceptions; diff --git a/VectoCore/Models/SimulationComponent/Data/AccelerationCurve.cs b/VectoCore/Models/SimulationComponent/Data/AccelerationCurve.cs index ab08ee0363ba9df8492862a5a71f2fb572ea1847..7ecda96e4fae99f56331c92203452dd970e96557 100644 --- a/VectoCore/Models/SimulationComponent/Data/AccelerationCurve.cs +++ b/VectoCore/Models/SimulationComponent/Data/AccelerationCurve.cs @@ -1,4 +1,20 @@ -using System; +/* +* Copyright 2015 European Union +* +* Licensed under the EUPL (the "Licence"); +* You may not use this work except in compliance with the Licence. +* You may obtain a copy of the Licence at: +* +* http://ec.europa.eu/idabc/eupl5 +* +* Unless required by applicable law or agreed to in writing, software +* distributed under the Licence is distributed on an "AS IS" basis, +* WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. +* See the Licence for the specific language governing permissions and +* limitations under the Licence. +*/ + +using System; using System.Collections.Generic; using System.Data; using System.Diagnostics; diff --git a/VectoCore/Models/SimulationComponent/Data/AuxSupplyPowerReader.cs b/VectoCore/Models/SimulationComponent/Data/AuxSupplyPowerReader.cs index fb85552b23ca6d48093126298e1a514def2efc2e..3b1859eb072241a543b5c38793d5fc980cf3e36b 100644 --- a/VectoCore/Models/SimulationComponent/Data/AuxSupplyPowerReader.cs +++ b/VectoCore/Models/SimulationComponent/Data/AuxSupplyPowerReader.cs @@ -1,3 +1,19 @@ +/* +* Copyright 2015 European Union +* +* Licensed under the EUPL (the "Licence"); +* You may not use this work except in compliance with the Licence. +* You may obtain a copy of the Licence at: +* +* http://ec.europa.eu/idabc/eupl5 +* +* Unless required by applicable law or agreed to in writing, software +* distributed under the Licence is distributed on an "AS IS" basis, +* WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. +* See the Licence for the specific language governing permissions and +* limitations under the Licence. +*/ + using System.Collections.Generic; using System.Data; using System.Linq; diff --git a/VectoCore/Models/SimulationComponent/Data/AuxiliaryData.cs b/VectoCore/Models/SimulationComponent/Data/AuxiliaryData.cs index 041efbe45c23cea1a791e0b55a75e8fb534d4325..ba403f48bb80c2dec110eac9fd8c03c238e2d596 100644 --- a/VectoCore/Models/SimulationComponent/Data/AuxiliaryData.cs +++ b/VectoCore/Models/SimulationComponent/Data/AuxiliaryData.cs @@ -1,3 +1,19 @@ +/* +* Copyright 2015 European Union +* +* Licensed under the EUPL (the "Licence"); +* You may not use this work except in compliance with the Licence. +* You may obtain a copy of the Licence at: +* +* http://ec.europa.eu/idabc/eupl5 +* +* Unless required by applicable law or agreed to in writing, software +* distributed under the Licence is distributed on an "AS IS" basis, +* WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. +* See the Licence for the specific language governing permissions and +* limitations under the Licence. +*/ + using System.Collections; using System.Data; using System.IO; diff --git a/VectoCore/Models/SimulationComponent/Data/AuxiliaryType.cs b/VectoCore/Models/SimulationComponent/Data/AuxiliaryType.cs index 30cf52f3edd6f6fd0cf83cdefcd1582cc60c36a2..238f4b6e2b3cb88490009d39640b3156edebb8a7 100644 --- a/VectoCore/Models/SimulationComponent/Data/AuxiliaryType.cs +++ b/VectoCore/Models/SimulationComponent/Data/AuxiliaryType.cs @@ -1,3 +1,19 @@ +/* +* Copyright 2015 European Union +* +* Licensed under the EUPL (the "Licence"); +* You may not use this work except in compliance with the Licence. +* You may obtain a copy of the Licence at: +* +* http://ec.europa.eu/idabc/eupl5 +* +* Unless required by applicable law or agreed to in writing, software +* distributed under the Licence is distributed on an "AS IS" basis, +* WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. +* See the Licence for the specific language governing permissions and +* limitations under the Licence. +*/ + using System; using TUGraz.VectoCore.Configuration; diff --git a/VectoCore/Models/SimulationComponent/Data/CombustionEngineData.cs b/VectoCore/Models/SimulationComponent/Data/CombustionEngineData.cs index 226e25fb27efbb63fb88aea5b9ec8437d3f0f701..78987bff6e71fc37a522fac2f3a534508bdd7261 100644 --- a/VectoCore/Models/SimulationComponent/Data/CombustionEngineData.cs +++ b/VectoCore/Models/SimulationComponent/Data/CombustionEngineData.cs @@ -1,4 +1,20 @@ -using TUGraz.VectoCore.Models.SimulationComponent.Data.Engine; +/* +* Copyright 2015 European Union +* +* Licensed under the EUPL (the "Licence"); +* You may not use this work except in compliance with the Licence. +* You may obtain a copy of the Licence at: +* +* http://ec.europa.eu/idabc/eupl5 +* +* Unless required by applicable law or agreed to in writing, software +* distributed under the Licence is distributed on an "AS IS" basis, +* WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. +* See the Licence for the specific language governing permissions and +* limitations under the Licence. +*/ + +using TUGraz.VectoCore.Models.SimulationComponent.Data.Engine; using TUGraz.VectoCore.Utils; namespace TUGraz.VectoCore.Models.SimulationComponent.Data diff --git a/VectoCore/Models/SimulationComponent/Data/CrossWindCorrectionCurve.cs b/VectoCore/Models/SimulationComponent/Data/CrossWindCorrectionCurve.cs index 3a8d5a4ee9f4ab893b6f48e5a2465d9cce145e56..7c8e99b8d7dab04c07dfc48a08e32437e2132cea 100644 --- a/VectoCore/Models/SimulationComponent/Data/CrossWindCorrectionCurve.cs +++ b/VectoCore/Models/SimulationComponent/Data/CrossWindCorrectionCurve.cs @@ -1,4 +1,20 @@ -using System.Collections.Generic; +/* +* Copyright 2015 European Union +* +* Licensed under the EUPL (the "Licence"); +* You may not use this work except in compliance with the Licence. +* You may obtain a copy of the Licence at: +* +* http://ec.europa.eu/idabc/eupl5 +* +* Unless required by applicable law or agreed to in writing, software +* distributed under the Licence is distributed on an "AS IS" basis, +* WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. +* See the Licence for the specific language governing permissions and +* limitations under the Licence. +*/ + +using System.Collections.Generic; using System.Data; using System.IO; using System.Linq; diff --git a/VectoCore/Models/SimulationComponent/Data/CrossWindCorrectionMode.cs b/VectoCore/Models/SimulationComponent/Data/CrossWindCorrectionMode.cs index 70403dcc71a80b30aff48a043c777342ee3b313e..63c9f4fbc5536ed0d72caa832af97ef5bb795ca0 100644 --- a/VectoCore/Models/SimulationComponent/Data/CrossWindCorrectionMode.cs +++ b/VectoCore/Models/SimulationComponent/Data/CrossWindCorrectionMode.cs @@ -1,3 +1,19 @@ +/* +* Copyright 2015 European Union +* +* Licensed under the EUPL (the "Licence"); +* You may not use this work except in compliance with the Licence. +* You may obtain a copy of the Licence at: +* +* http://ec.europa.eu/idabc/eupl5 +* +* Unless required by applicable law or agreed to in writing, software +* distributed under the Licence is distributed on an "AS IS" basis, +* WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. +* See the Licence for the specific language governing permissions and +* limitations under the Licence. +*/ + using System; using NLog; diff --git a/VectoCore/Models/SimulationComponent/Data/CycleData.cs b/VectoCore/Models/SimulationComponent/Data/CycleData.cs index 76c9d656fb7cff153cf9c70addd46d43105677aa..ddd4a59d44dcf71cf4f4726f0e1d8ef4dcf866f6 100644 --- a/VectoCore/Models/SimulationComponent/Data/CycleData.cs +++ b/VectoCore/Models/SimulationComponent/Data/CycleData.cs @@ -1,3 +1,19 @@ +/* +* Copyright 2015 European Union +* +* Licensed under the EUPL (the "Licence"); +* You may not use this work except in compliance with the Licence. +* You may obtain a copy of the Licence at: +* +* http://ec.europa.eu/idabc/eupl5 +* +* Unless required by applicable law or agreed to in writing, software +* distributed under the Licence is distributed on an "AS IS" basis, +* WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. +* See the Licence for the specific language governing permissions and +* limitations under the Licence. +*/ + using TUGraz.VectoCore.Utils; namespace TUGraz.VectoCore.Models.SimulationComponent.Data diff --git a/VectoCore/Models/SimulationComponent/Data/DriverData.cs b/VectoCore/Models/SimulationComponent/Data/DriverData.cs index 5fc1045ea5f0efaafc45581213ee6812f339dcc4..b5cece630b5828d6872c669cbd21278faed980c0 100644 --- a/VectoCore/Models/SimulationComponent/Data/DriverData.cs +++ b/VectoCore/Models/SimulationComponent/Data/DriverData.cs @@ -1,3 +1,19 @@ +/* +* Copyright 2015 European Union +* +* Licensed under the EUPL (the "Licence"); +* You may not use this work except in compliance with the Licence. +* You may obtain a copy of the Licence at: +* +* http://ec.europa.eu/idabc/eupl5 +* +* Unless required by applicable law or agreed to in writing, software +* distributed under the Licence is distributed on an "AS IS" basis, +* WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. +* See the Licence for the specific language governing permissions and +* limitations under the Licence. +*/ + using System; using TUGraz.VectoCore.Models.Simulation.Data; using TUGraz.VectoCore.Utils; diff --git a/VectoCore/Models/SimulationComponent/Data/DrivingCycleData.cs b/VectoCore/Models/SimulationComponent/Data/DrivingCycleData.cs index 400027eccfafd4c317a4982416d3ea7ef10595ba..f73d1c2f9fec7bc5e89c831515febcafd20f56fe 100644 --- a/VectoCore/Models/SimulationComponent/Data/DrivingCycleData.cs +++ b/VectoCore/Models/SimulationComponent/Data/DrivingCycleData.cs @@ -1,4 +1,20 @@ -using System.Collections.Generic; +/* +* Copyright 2015 European Union +* +* Licensed under the EUPL (the "Licence"); +* You may not use this work except in compliance with the Licence. +* You may obtain a copy of the Licence at: +* +* http://ec.europa.eu/idabc/eupl5 +* +* Unless required by applicable law or agreed to in writing, software +* distributed under the Licence is distributed on an "AS IS" basis, +* WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. +* See the Licence for the specific language governing permissions and +* limitations under the Licence. +*/ + +using System.Collections.Generic; using System.Data; using TUGraz.VectoCore.Utils; diff --git a/VectoCore/Models/SimulationComponent/Data/Engine/EngineFullLoadCurve.cs b/VectoCore/Models/SimulationComponent/Data/Engine/EngineFullLoadCurve.cs index f0b5d7e1c0f27f5691f3d422c9cbe07e912b38e3..c26ca66ad6e1a691d0ffd2c1725d992bde245b55 100644 --- a/VectoCore/Models/SimulationComponent/Data/Engine/EngineFullLoadCurve.cs +++ b/VectoCore/Models/SimulationComponent/Data/Engine/EngineFullLoadCurve.cs @@ -1,4 +1,20 @@ -using System; +/* +* Copyright 2015 European Union +* +* Licensed under the EUPL (the "Licence"); +* You may not use this work except in compliance with the Licence. +* You may obtain a copy of the Licence at: +* +* http://ec.europa.eu/idabc/eupl5 +* +* Unless required by applicable law or agreed to in writing, software +* distributed under the Licence is distributed on an "AS IS" basis, +* WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. +* See the Licence for the specific language governing permissions and +* limitations under the Licence. +*/ + +using System; using System.Collections.Generic; using System.Diagnostics.Contracts; using System.Linq; diff --git a/VectoCore/Models/SimulationComponent/Data/Engine/FuelConsumptionMap.cs b/VectoCore/Models/SimulationComponent/Data/Engine/FuelConsumptionMap.cs index 0e5e17d389b567c13dde502455d801e0b27edfba..6c20fa1aedf93d35aa4c0bb322a62a3e598bd507 100644 --- a/VectoCore/Models/SimulationComponent/Data/Engine/FuelConsumptionMap.cs +++ b/VectoCore/Models/SimulationComponent/Data/Engine/FuelConsumptionMap.cs @@ -1,4 +1,20 @@ -using System; +/* +* Copyright 2015 European Union +* +* Licensed under the EUPL (the "Licence"); +* You may not use this work except in compliance with the Licence. +* You may obtain a copy of the Licence at: +* +* http://ec.europa.eu/idabc/eupl5 +* +* Unless required by applicable law or agreed to in writing, software +* distributed under the Licence is distributed on an "AS IS" basis, +* WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. +* See the Licence for the specific language governing permissions and +* limitations under the Licence. +*/ + +using System; using System.Collections.Generic; using System.Data; using System.Diagnostics.Contracts; diff --git a/VectoCore/Models/SimulationComponent/Data/Engine/PT1Curve.cs b/VectoCore/Models/SimulationComponent/Data/Engine/PT1Curve.cs index 4022aa3675dd3a27d7328fb3a95b483afab5b4f4..2ac709e4adc8475df2032a6f4e9b55ba13444be8 100644 --- a/VectoCore/Models/SimulationComponent/Data/Engine/PT1Curve.cs +++ b/VectoCore/Models/SimulationComponent/Data/Engine/PT1Curve.cs @@ -1,4 +1,20 @@ -using System; +/* +* Copyright 2015 European Union +* +* Licensed under the EUPL (the "Licence"); +* You may not use this work except in compliance with the Licence. +* You may obtain a copy of the Licence at: +* +* http://ec.europa.eu/idabc/eupl5 +* +* Unless required by applicable law or agreed to in writing, software +* distributed under the Licence is distributed on an "AS IS" basis, +* WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. +* See the Licence for the specific language governing permissions and +* limitations under the Licence. +*/ + +using System; using System.Collections.Generic; using System.Data; using System.Linq; diff --git a/VectoCore/Models/SimulationComponent/Data/FullLoadCurve.cs b/VectoCore/Models/SimulationComponent/Data/FullLoadCurve.cs index ba085914c605b7467c21853b08380e8b22ed9caf..884de4a42da4209749887e9ce3ad796bbdf48019 100644 --- a/VectoCore/Models/SimulationComponent/Data/FullLoadCurve.cs +++ b/VectoCore/Models/SimulationComponent/Data/FullLoadCurve.cs @@ -1,3 +1,19 @@ +/* +* Copyright 2015 European Union +* +* Licensed under the EUPL (the "Licence"); +* You may not use this work except in compliance with the Licence. +* You may obtain a copy of the Licence at: +* +* http://ec.europa.eu/idabc/eupl5 +* +* Unless required by applicable law or agreed to in writing, software +* distributed under the Licence is distributed on an "AS IS" basis, +* WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. +* See the Licence for the specific language governing permissions and +* limitations under the Licence. +*/ + using System; using System.Collections.Generic; using System.Data; diff --git a/VectoCore/Models/SimulationComponent/Data/Gearbox/GearData.cs b/VectoCore/Models/SimulationComponent/Data/Gearbox/GearData.cs index d392c1736321783b98107c68f72341640a2d710c..3ec8a1e8338a14397c3feef618d886a596a03263 100644 --- a/VectoCore/Models/SimulationComponent/Data/Gearbox/GearData.cs +++ b/VectoCore/Models/SimulationComponent/Data/Gearbox/GearData.cs @@ -1,4 +1,20 @@ -namespace TUGraz.VectoCore.Models.SimulationComponent.Data.Gearbox +/* +* Copyright 2015 European Union +* +* Licensed under the EUPL (the "Licence"); +* You may not use this work except in compliance with the Licence. +* You may obtain a copy of the Licence at: +* +* http://ec.europa.eu/idabc/eupl5 +* +* Unless required by applicable law or agreed to in writing, software +* distributed under the Licence is distributed on an "AS IS" basis, +* WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. +* See the Licence for the specific language governing permissions and +* limitations under the Licence. +*/ + +namespace TUGraz.VectoCore.Models.SimulationComponent.Data.Gearbox { public class GearData { diff --git a/VectoCore/Models/SimulationComponent/Data/Gearbox/ShiftPolygon.cs b/VectoCore/Models/SimulationComponent/Data/Gearbox/ShiftPolygon.cs index af0393c41523b33cb3a56ade71e3817f388eb4f5..ec8283b733c58d4db01b4e8864e212656fe0a13d 100644 --- a/VectoCore/Models/SimulationComponent/Data/Gearbox/ShiftPolygon.cs +++ b/VectoCore/Models/SimulationComponent/Data/Gearbox/ShiftPolygon.cs @@ -1,4 +1,20 @@ -using System; +/* +* Copyright 2015 European Union +* +* Licensed under the EUPL (the "Licence"); +* You may not use this work except in compliance with the Licence. +* You may obtain a copy of the Licence at: +* +* http://ec.europa.eu/idabc/eupl5 +* +* Unless required by applicable law or agreed to in writing, software +* distributed under the Licence is distributed on an "AS IS" basis, +* WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. +* See the Licence for the specific language governing permissions and +* limitations under the Licence. +*/ + +using System; using System.Collections.Generic; using System.Collections.ObjectModel; using System.Data; diff --git a/VectoCore/Models/SimulationComponent/Data/Gearbox/TorqueConverterData.cs b/VectoCore/Models/SimulationComponent/Data/Gearbox/TorqueConverterData.cs index 33f591ebe4b02025561f61149e2124832e61e287..bacabdc68f6fe3e86d3783f801822ba4181a0497 100644 --- a/VectoCore/Models/SimulationComponent/Data/Gearbox/TorqueConverterData.cs +++ b/VectoCore/Models/SimulationComponent/Data/Gearbox/TorqueConverterData.cs @@ -1,4 +1,20 @@ -namespace TUGraz.VectoCore.Models.SimulationComponent.Data.Gearbox +/* +* Copyright 2015 European Union +* +* Licensed under the EUPL (the "Licence"); +* You may not use this work except in compliance with the Licence. +* You may obtain a copy of the Licence at: +* +* http://ec.europa.eu/idabc/eupl5 +* +* Unless required by applicable law or agreed to in writing, software +* distributed under the Licence is distributed on an "AS IS" basis, +* WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. +* See the Licence for the specific language governing permissions and +* limitations under the Licence. +*/ + +namespace TUGraz.VectoCore.Models.SimulationComponent.Data.Gearbox { public class TorqueConverterData {} } \ No newline at end of file diff --git a/VectoCore/Models/SimulationComponent/Data/Gearbox/TransmissionLossMap.cs b/VectoCore/Models/SimulationComponent/Data/Gearbox/TransmissionLossMap.cs index a337fbdd1b2acfc68350a5e25f12fbca9c333ee1..81edee0a1f82e6c2264fc4c504b5b1b9e2eb5bec 100644 --- a/VectoCore/Models/SimulationComponent/Data/Gearbox/TransmissionLossMap.cs +++ b/VectoCore/Models/SimulationComponent/Data/Gearbox/TransmissionLossMap.cs @@ -1,4 +1,20 @@ -using System; +/* +* Copyright 2015 European Union +* +* Licensed under the EUPL (the "Licence"); +* You may not use this work except in compliance with the Licence. +* You may obtain a copy of the Licence at: +* +* http://ec.europa.eu/idabc/eupl5 +* +* Unless required by applicable law or agreed to in writing, software +* distributed under the Licence is distributed on an "AS IS" basis, +* WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. +* See the Licence for the specific language governing permissions and +* limitations under the Licence. +*/ + +using System; using System.Collections.Generic; using System.Data; using System.Linq; diff --git a/VectoCore/Models/SimulationComponent/Data/GearboxData.cs b/VectoCore/Models/SimulationComponent/Data/GearboxData.cs index f25db14d102f5c33f6522c524613ee935d032643..065e1f9252e688d6aa9cd1f9e56fdbaae2cce2be 100644 --- a/VectoCore/Models/SimulationComponent/Data/GearboxData.cs +++ b/VectoCore/Models/SimulationComponent/Data/GearboxData.cs @@ -1,4 +1,20 @@ -using System.Collections.Generic; +/* +* Copyright 2015 European Union +* +* Licensed under the EUPL (the "Licence"); +* You may not use this work except in compliance with the Licence. +* You may obtain a copy of the Licence at: +* +* http://ec.europa.eu/idabc/eupl5 +* +* Unless required by applicable law or agreed to in writing, software +* distributed under the Licence is distributed on an "AS IS" basis, +* WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. +* See the Licence for the specific language governing permissions and +* limitations under the Licence. +*/ + +using System.Collections.Generic; using System.Runtime.Serialization; using TUGraz.VectoCore.Models.SimulationComponent.Data.Gearbox; using TUGraz.VectoCore.Utils; diff --git a/VectoCore/Models/SimulationComponent/Data/GearboxType.cs b/VectoCore/Models/SimulationComponent/Data/GearboxType.cs index 921bb61959b4c704f53db261cd538ddaf072bb47..959e4ad96db9647e52307512032dc15d9087977b 100644 --- a/VectoCore/Models/SimulationComponent/Data/GearboxType.cs +++ b/VectoCore/Models/SimulationComponent/Data/GearboxType.cs @@ -1,4 +1,20 @@ -using System.Diagnostics.CodeAnalysis; +/* +* Copyright 2015 European Union +* +* Licensed under the EUPL (the "Licence"); +* You may not use this work except in compliance with the Licence. +* You may obtain a copy of the Licence at: +* +* http://ec.europa.eu/idabc/eupl5 +* +* Unless required by applicable law or agreed to in writing, software +* distributed under the Licence is distributed on an "AS IS" basis, +* WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. +* See the Licence for the specific language governing permissions and +* limitations under the Licence. +*/ + +using System.Diagnostics.CodeAnalysis; using TUGraz.VectoCore.Utils; namespace TUGraz.VectoCore.Models.SimulationComponent.Data diff --git a/VectoCore/Models/SimulationComponent/Data/RetarderData.cs b/VectoCore/Models/SimulationComponent/Data/RetarderData.cs index 29592e8b593f2eebcdc32ae9f8da8f8e4f580e0f..c4ea93a1ff04bc4438ad0b75c739ea666801719d 100644 --- a/VectoCore/Models/SimulationComponent/Data/RetarderData.cs +++ b/VectoCore/Models/SimulationComponent/Data/RetarderData.cs @@ -1,4 +1,20 @@ -using System.IO; +/* +* Copyright 2015 European Union +* +* Licensed under the EUPL (the "Licence"); +* You may not use this work except in compliance with the Licence. +* You may obtain a copy of the Licence at: +* +* http://ec.europa.eu/idabc/eupl5 +* +* Unless required by applicable law or agreed to in writing, software +* distributed under the Licence is distributed on an "AS IS" basis, +* WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. +* See the Licence for the specific language governing permissions and +* limitations under the Licence. +*/ + +using System.IO; using Newtonsoft.Json; namespace TUGraz.VectoCore.Models.SimulationComponent.Data diff --git a/VectoCore/Models/SimulationComponent/Data/RetarderLossMap.cs b/VectoCore/Models/SimulationComponent/Data/RetarderLossMap.cs index 3ce828596cfe5bc428ee097473a17ecbfe319519..5e4769ea0c11871c79c32d9c9cc71a17bcdcb612 100644 --- a/VectoCore/Models/SimulationComponent/Data/RetarderLossMap.cs +++ b/VectoCore/Models/SimulationComponent/Data/RetarderLossMap.cs @@ -1,4 +1,20 @@ -using System; +/* +* Copyright 2015 European Union +* +* Licensed under the EUPL (the "Licence"); +* You may not use this work except in compliance with the Licence. +* You may obtain a copy of the Licence at: +* +* http://ec.europa.eu/idabc/eupl5 +* +* Unless required by applicable law or agreed to in writing, software +* distributed under the Licence is distributed on an "AS IS" basis, +* WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. +* See the Licence for the specific language governing permissions and +* limitations under the Licence. +*/ + +using System; using System.Collections.Generic; using System.Data; using System.Linq; diff --git a/VectoCore/Models/SimulationComponent/Data/SimulationComponentData.cs b/VectoCore/Models/SimulationComponent/Data/SimulationComponentData.cs index 79ccea370674df106696d99666b0c2054a29f94e..6bd7e9f348c233cba539f037b2c25cc1f8be1822 100644 --- a/VectoCore/Models/SimulationComponent/Data/SimulationComponentData.cs +++ b/VectoCore/Models/SimulationComponent/Data/SimulationComponentData.cs @@ -1,4 +1,20 @@ -namespace TUGraz.VectoCore.Models.SimulationComponent.Data +/* +* Copyright 2015 European Union +* +* Licensed under the EUPL (the "Licence"); +* You may not use this work except in compliance with the Licence. +* You may obtain a copy of the Licence at: +* +* http://ec.europa.eu/idabc/eupl5 +* +* Unless required by applicable law or agreed to in writing, software +* distributed under the Licence is distributed on an "AS IS" basis, +* WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. +* See the Licence for the specific language governing permissions and +* limitations under the Licence. +*/ + +namespace TUGraz.VectoCore.Models.SimulationComponent.Data { public class SimulationComponentData : LoggingObject { diff --git a/VectoCore/Models/SimulationComponent/Data/VehicleData.cs b/VectoCore/Models/SimulationComponent/Data/VehicleData.cs index 9791589edccb199933d22a6034d000dd829994cc..a32b50393dde840507966aa714163f7e092360c8 100644 --- a/VectoCore/Models/SimulationComponent/Data/VehicleData.cs +++ b/VectoCore/Models/SimulationComponent/Data/VehicleData.cs @@ -1,4 +1,20 @@ -using System; +/* +* Copyright 2015 European Union +* +* Licensed under the EUPL (the "Licence"); +* You may not use this work except in compliance with the Licence. +* You may obtain a copy of the Licence at: +* +* http://ec.europa.eu/idabc/eupl5 +* +* Unless required by applicable law or agreed to in writing, software +* distributed under the Licence is distributed on an "AS IS" basis, +* WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. +* See the Licence for the specific language governing permissions and +* limitations under the Licence. +*/ + +using System; using System.Collections.Generic; using TUGraz.VectoCore.Exceptions; using TUGraz.VectoCore.Models.Declaration; diff --git a/VectoCore/Models/SimulationComponent/IAuxiliary.cs b/VectoCore/Models/SimulationComponent/IAuxiliary.cs index b0def57f8d98a35343e7a45127521a4ac9f869fb..0b3acb439f289789fd5fc1e0d08546221052b156 100644 --- a/VectoCore/Models/SimulationComponent/IAuxiliary.cs +++ b/VectoCore/Models/SimulationComponent/IAuxiliary.cs @@ -1,4 +1,20 @@ -namespace TUGraz.VectoCore.Models.SimulationComponent +/* +* Copyright 2015 European Union +* +* Licensed under the EUPL (the "Licence"); +* You may not use this work except in compliance with the Licence. +* You may obtain a copy of the Licence at: +* +* http://ec.europa.eu/idabc/eupl5 +* +* Unless required by applicable law or agreed to in writing, software +* distributed under the Licence is distributed on an "AS IS" basis, +* WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. +* See the Licence for the specific language governing permissions and +* limitations under the Licence. +*/ + +namespace TUGraz.VectoCore.Models.SimulationComponent { /// <summary> /// Defines interfaces for auxiliary components. diff --git a/VectoCore/Models/SimulationComponent/IBrakes.cs b/VectoCore/Models/SimulationComponent/IBrakes.cs index 4f5bcf8b6953f133a0deabc0c8687c86c3570c66..10b33bb459285fc79ac5afd4bc6b37c5d9d72fe6 100644 --- a/VectoCore/Models/SimulationComponent/IBrakes.cs +++ b/VectoCore/Models/SimulationComponent/IBrakes.cs @@ -1,4 +1,20 @@ -using TUGraz.VectoCore.Utils; +/* +* Copyright 2015 European Union +* +* Licensed under the EUPL (the "Licence"); +* You may not use this work except in compliance with the Licence. +* You may obtain a copy of the Licence at: +* +* http://ec.europa.eu/idabc/eupl5 +* +* Unless required by applicable law or agreed to in writing, software +* distributed under the Licence is distributed on an "AS IS" basis, +* WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. +* See the Licence for the specific language governing permissions and +* limitations under the Licence. +*/ + +using TUGraz.VectoCore.Utils; namespace TUGraz.VectoCore.Models.SimulationComponent { diff --git a/VectoCore/Models/SimulationComponent/IClutch.cs b/VectoCore/Models/SimulationComponent/IClutch.cs index 78ca0c1358d6098cd94a4c9f6a778dbe97432cf9..bbb1c039ba9d04ad52b4faeeb992a440b33f2a63 100644 --- a/VectoCore/Models/SimulationComponent/IClutch.cs +++ b/VectoCore/Models/SimulationComponent/IClutch.cs @@ -1,4 +1,20 @@ -using TUGraz.VectoCore.Models.Connector.Ports; +/* +* Copyright 2015 European Union +* +* Licensed under the EUPL (the "Licence"); +* You may not use this work except in compliance with the Licence. +* You may obtain a copy of the Licence at: +* +* http://ec.europa.eu/idabc/eupl5 +* +* Unless required by applicable law or agreed to in writing, software +* distributed under the Licence is distributed on an "AS IS" basis, +* WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. +* See the Licence for the specific language governing permissions and +* limitations under the Licence. +*/ + +using TUGraz.VectoCore.Models.Connector.Ports; namespace TUGraz.VectoCore.Models.SimulationComponent { diff --git a/VectoCore/Models/SimulationComponent/ICombustionEngine.cs b/VectoCore/Models/SimulationComponent/ICombustionEngine.cs index d795974b9a05d7e26b65d21e73252c9a4c3b69e0..ed8150dc8f399c38aa44f1d5ae658233be3da456 100644 --- a/VectoCore/Models/SimulationComponent/ICombustionEngine.cs +++ b/VectoCore/Models/SimulationComponent/ICombustionEngine.cs @@ -1,4 +1,20 @@ -using TUGraz.VectoCore.Models.Connector.Ports; +/* +* Copyright 2015 European Union +* +* Licensed under the EUPL (the "Licence"); +* You may not use this work except in compliance with the Licence. +* You may obtain a copy of the Licence at: +* +* http://ec.europa.eu/idabc/eupl5 +* +* Unless required by applicable law or agreed to in writing, software +* distributed under the Licence is distributed on an "AS IS" basis, +* WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. +* See the Licence for the specific language governing permissions and +* limitations under the Licence. +*/ + +using TUGraz.VectoCore.Models.Connector.Ports; using TUGraz.VectoCore.Models.Simulation.DataBus; namespace TUGraz.VectoCore.Models.SimulationComponent diff --git a/VectoCore/Models/SimulationComponent/ICombustionEngineIdleController.cs b/VectoCore/Models/SimulationComponent/ICombustionEngineIdleController.cs index e1466b6a711d4d7be7726d619c71583dde5d47c0..a944ff194fdac75ad8aa0b8766f9036224480660 100644 --- a/VectoCore/Models/SimulationComponent/ICombustionEngineIdleController.cs +++ b/VectoCore/Models/SimulationComponent/ICombustionEngineIdleController.cs @@ -1,3 +1,19 @@ +/* +* Copyright 2015 European Union +* +* Licensed under the EUPL (the "Licence"); +* You may not use this work except in compliance with the Licence. +* You may obtain a copy of the Licence at: +* +* http://ec.europa.eu/idabc/eupl5 +* +* Unless required by applicable law or agreed to in writing, software +* distributed under the Licence is distributed on an "AS IS" basis, +* WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. +* See the Licence for the specific language governing permissions and +* limitations under the Licence. +*/ + using TUGraz.VectoCore.Models.Connector.Ports; using TUGraz.VectoCore.Models.SimulationComponent.Impl; diff --git a/VectoCore/Models/SimulationComponent/IDriver.cs b/VectoCore/Models/SimulationComponent/IDriver.cs index 9527fb200c8e5ea23ef2517225d8ef65aa768685..1ba053bce56cfa0f3e802af9525a1703f771ce3b 100644 --- a/VectoCore/Models/SimulationComponent/IDriver.cs +++ b/VectoCore/Models/SimulationComponent/IDriver.cs @@ -1,4 +1,20 @@ -using TUGraz.VectoCore.Models.Connector.Ports; +/* +* Copyright 2015 European Union +* +* Licensed under the EUPL (the "Licence"); +* You may not use this work except in compliance with the Licence. +* You may obtain a copy of the Licence at: +* +* http://ec.europa.eu/idabc/eupl5 +* +* Unless required by applicable law or agreed to in writing, software +* distributed under the Licence is distributed on an "AS IS" basis, +* WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. +* See the Licence for the specific language governing permissions and +* limitations under the Licence. +*/ + +using TUGraz.VectoCore.Models.Connector.Ports; namespace TUGraz.VectoCore.Models.SimulationComponent { diff --git a/VectoCore/Models/SimulationComponent/IDriverActions.cs b/VectoCore/Models/SimulationComponent/IDriverActions.cs index f4f2aded9fb215fd5844dd9f946e4358a0484964..252f2505bcb9986d6df804345f3114b6aa61842a 100644 --- a/VectoCore/Models/SimulationComponent/IDriverActions.cs +++ b/VectoCore/Models/SimulationComponent/IDriverActions.cs @@ -1,3 +1,19 @@ +/* +* Copyright 2015 European Union +* +* Licensed under the EUPL (the "Licence"); +* You may not use this work except in compliance with the Licence. +* You may obtain a copy of the Licence at: +* +* http://ec.europa.eu/idabc/eupl5 +* +* Unless required by applicable law or agreed to in writing, software +* distributed under the Licence is distributed on an "AS IS" basis, +* WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. +* See the Licence for the specific language governing permissions and +* limitations under the Licence. +*/ + using TUGraz.VectoCore.Models.Connector.Ports; using TUGraz.VectoCore.Models.Simulation.DataBus; using TUGraz.VectoCore.Models.SimulationComponent.Data; diff --git a/VectoCore/Models/SimulationComponent/IDriverStrategy.cs b/VectoCore/Models/SimulationComponent/IDriverStrategy.cs index 8728f1603045fdea08cd3beb1ac0b6c3f70a9439..d5d2e0dc50a3053c7045bfa1ac366fb6c97ffdfe 100644 --- a/VectoCore/Models/SimulationComponent/IDriverStrategy.cs +++ b/VectoCore/Models/SimulationComponent/IDriverStrategy.cs @@ -1,4 +1,20 @@ -using TUGraz.VectoCore.Models.Connector.Ports; +/* +* Copyright 2015 European Union +* +* Licensed under the EUPL (the "Licence"); +* You may not use this work except in compliance with the Licence. +* You may obtain a copy of the Licence at: +* +* http://ec.europa.eu/idabc/eupl5 +* +* Unless required by applicable law or agreed to in writing, software +* distributed under the Licence is distributed on an "AS IS" basis, +* WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. +* See the Licence for the specific language governing permissions and +* limitations under the Licence. +*/ + +using TUGraz.VectoCore.Models.Connector.Ports; using TUGraz.VectoCore.Models.Simulation.DataBus; using TUGraz.VectoCore.Models.SimulationComponent.Impl; using TUGraz.VectoCore.Utils; diff --git a/VectoCore/Models/SimulationComponent/IDrivingCycle.cs b/VectoCore/Models/SimulationComponent/IDrivingCycle.cs index 53a12a38d3b5c3871c51ca9536c9533a4e7a2413..c657d68657c476301757be7d7794ff7cc412deb0 100644 --- a/VectoCore/Models/SimulationComponent/IDrivingCycle.cs +++ b/VectoCore/Models/SimulationComponent/IDrivingCycle.cs @@ -1,3 +1,19 @@ +/* +* Copyright 2015 European Union +* +* Licensed under the EUPL (the "Licence"); +* You may not use this work except in compliance with the Licence. +* You may obtain a copy of the Licence at: +* +* http://ec.europa.eu/idabc/eupl5 +* +* Unless required by applicable law or agreed to in writing, software +* distributed under the Licence is distributed on an "AS IS" basis, +* WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. +* See the Licence for the specific language governing permissions and +* limitations under the Licence. +*/ + using TUGraz.VectoCore.Models.Connector.Ports; namespace TUGraz.VectoCore.Models.SimulationComponent diff --git a/VectoCore/Models/SimulationComponent/IDrivingCycleInfo.cs b/VectoCore/Models/SimulationComponent/IDrivingCycleInfo.cs index 06f3cda9f37dd8389a290160de70eccf560f64ef..2000576767efbed7b3a8450d458c8c2745ce7020 100644 --- a/VectoCore/Models/SimulationComponent/IDrivingCycleInfo.cs +++ b/VectoCore/Models/SimulationComponent/IDrivingCycleInfo.cs @@ -1,3 +1,19 @@ +/* +* Copyright 2015 European Union +* +* Licensed under the EUPL (the "Licence"); +* You may not use this work except in compliance with the Licence. +* You may obtain a copy of the Licence at: +* +* http://ec.europa.eu/idabc/eupl5 +* +* Unless required by applicable law or agreed to in writing, software +* distributed under the Licence is distributed on an "AS IS" basis, +* WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. +* See the Licence for the specific language governing permissions and +* limitations under the Licence. +*/ + using TUGraz.VectoCore.Models.SimulationComponent.Data; namespace TUGraz.VectoCore.Models.SimulationComponent diff --git a/VectoCore/Models/SimulationComponent/IEngineOnlyDrivingCycle.cs b/VectoCore/Models/SimulationComponent/IEngineOnlyDrivingCycle.cs index cee733a53edd52445002b11ddf0446bd277cef35..3b23170c0933d33fc4411c7fcad6b93f8b04edae 100644 --- a/VectoCore/Models/SimulationComponent/IEngineOnlyDrivingCycle.cs +++ b/VectoCore/Models/SimulationComponent/IEngineOnlyDrivingCycle.cs @@ -1,3 +1,19 @@ +/* +* Copyright 2015 European Union +* +* Licensed under the EUPL (the "Licence"); +* You may not use this work except in compliance with the Licence. +* You may obtain a copy of the Licence at: +* +* http://ec.europa.eu/idabc/eupl5 +* +* Unless required by applicable law or agreed to in writing, software +* distributed under the Licence is distributed on an "AS IS" basis, +* WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. +* See the Licence for the specific language governing permissions and +* limitations under the Licence. +*/ + using TUGraz.VectoCore.Models.Connector.Ports; namespace TUGraz.VectoCore.Models.SimulationComponent diff --git a/VectoCore/Models/SimulationComponent/IGearbox.cs b/VectoCore/Models/SimulationComponent/IGearbox.cs index fbff9139219b981f1de0efd3ba98ed904ff94a4b..1bb5e8a55bb1349f2816eea12cccd584a828bd7b 100644 --- a/VectoCore/Models/SimulationComponent/IGearbox.cs +++ b/VectoCore/Models/SimulationComponent/IGearbox.cs @@ -1,4 +1,20 @@ -using TUGraz.VectoCore.Models.Connector.Ports; +/* +* Copyright 2015 European Union +* +* Licensed under the EUPL (the "Licence"); +* You may not use this work except in compliance with the Licence. +* You may obtain a copy of the Licence at: +* +* http://ec.europa.eu/idabc/eupl5 +* +* Unless required by applicable law or agreed to in writing, software +* distributed under the Licence is distributed on an "AS IS" basis, +* WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. +* See the Licence for the specific language governing permissions and +* limitations under the Licence. +*/ + +using TUGraz.VectoCore.Models.Connector.Ports; using TUGraz.VectoCore.Models.Simulation.DataBus; namespace TUGraz.VectoCore.Models.SimulationComponent diff --git a/VectoCore/Models/SimulationComponent/IPowerTrainComponent.cs b/VectoCore/Models/SimulationComponent/IPowerTrainComponent.cs index 8841c6aaa21f7e3b5cd4b60c2110649a71bb57fc..ba253ce9a14274ad5d26064aba8f25f44bbf6759 100644 --- a/VectoCore/Models/SimulationComponent/IPowerTrainComponent.cs +++ b/VectoCore/Models/SimulationComponent/IPowerTrainComponent.cs @@ -1,4 +1,20 @@ -using TUGraz.VectoCore.Models.Connector.Ports; +/* +* Copyright 2015 European Union +* +* Licensed under the EUPL (the "Licence"); +* You may not use this work except in compliance with the Licence. +* You may obtain a copy of the Licence at: +* +* http://ec.europa.eu/idabc/eupl5 +* +* Unless required by applicable law or agreed to in writing, software +* distributed under the Licence is distributed on an "AS IS" basis, +* WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. +* See the Licence for the specific language governing permissions and +* limitations under the Licence. +*/ + +using TUGraz.VectoCore.Models.Connector.Ports; namespace TUGraz.VectoCore.Models.SimulationComponent { diff --git a/VectoCore/Models/SimulationComponent/IShiftStrategy.cs b/VectoCore/Models/SimulationComponent/IShiftStrategy.cs index 918a1f5a12e8c9d92ba0f915d33df0f83e66118d..aebd20895514a40b1a327ae6292b5e4245463b93 100644 --- a/VectoCore/Models/SimulationComponent/IShiftStrategy.cs +++ b/VectoCore/Models/SimulationComponent/IShiftStrategy.cs @@ -1,3 +1,19 @@ +/* +* Copyright 2015 European Union +* +* Licensed under the EUPL (the "Licence"); +* You may not use this work except in compliance with the Licence. +* You may obtain a copy of the Licence at: +* +* http://ec.europa.eu/idabc/eupl5 +* +* Unless required by applicable law or agreed to in writing, software +* distributed under the Licence is distributed on an "AS IS" basis, +* WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. +* See the Licence for the specific language governing permissions and +* limitations under the Licence. +*/ + using TUGraz.VectoCore.Models.SimulationComponent.Impl; using TUGraz.VectoCore.Utils; diff --git a/VectoCore/Models/SimulationComponent/IVehicle.cs b/VectoCore/Models/SimulationComponent/IVehicle.cs index 78b343126ea8a41ce83b19b021c0fe55385f9c0c..f1a5aa4c251073a061444d76274e93a038f05d3c 100644 --- a/VectoCore/Models/SimulationComponent/IVehicle.cs +++ b/VectoCore/Models/SimulationComponent/IVehicle.cs @@ -1,4 +1,20 @@ -using TUGraz.VectoCore.Models.Connector.Ports; +/* +* Copyright 2015 European Union +* +* Licensed under the EUPL (the "Licence"); +* You may not use this work except in compliance with the Licence. +* You may obtain a copy of the Licence at: +* +* http://ec.europa.eu/idabc/eupl5 +* +* Unless required by applicable law or agreed to in writing, software +* distributed under the Licence is distributed on an "AS IS" basis, +* WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. +* See the Licence for the specific language governing permissions and +* limitations under the Licence. +*/ + +using TUGraz.VectoCore.Models.Connector.Ports; using TUGraz.VectoCore.Models.Simulation.DataBus; namespace TUGraz.VectoCore.Models.SimulationComponent diff --git a/VectoCore/Models/SimulationComponent/IWheels.cs b/VectoCore/Models/SimulationComponent/IWheels.cs index 62d3756c16b4a14193aed5b1eceab5a89780a5da..a6f9e0eb353c2a23e031ac784ef763e8b4cba0d5 100644 --- a/VectoCore/Models/SimulationComponent/IWheels.cs +++ b/VectoCore/Models/SimulationComponent/IWheels.cs @@ -1,4 +1,20 @@ -using TUGraz.VectoCore.Models.Connector.Ports; +/* +* Copyright 2015 European Union +* +* Licensed under the EUPL (the "Licence"); +* You may not use this work except in compliance with the Licence. +* You may obtain a copy of the Licence at: +* +* http://ec.europa.eu/idabc/eupl5 +* +* Unless required by applicable law or agreed to in writing, software +* distributed under the Licence is distributed on an "AS IS" basis, +* WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. +* See the Licence for the specific language governing permissions and +* limitations under the Licence. +*/ + +using TUGraz.VectoCore.Models.Connector.Ports; namespace TUGraz.VectoCore.Models.SimulationComponent { diff --git a/VectoCore/Models/SimulationComponent/Impl/Auxiliary.cs b/VectoCore/Models/SimulationComponent/Impl/Auxiliary.cs index a9305a7974cf123a053ed4f1b9c344ffc1758c46..f9efe803da271c62fde8fa15bbb0b814e3b64001 100644 --- a/VectoCore/Models/SimulationComponent/Impl/Auxiliary.cs +++ b/VectoCore/Models/SimulationComponent/Impl/Auxiliary.cs @@ -1,4 +1,20 @@ -using System; +/* +* Copyright 2015 European Union +* +* Licensed under the EUPL (the "Licence"); +* You may not use this work except in compliance with the Licence. +* You may obtain a copy of the Licence at: +* +* http://ec.europa.eu/idabc/eupl5 +* +* Unless required by applicable law or agreed to in writing, software +* distributed under the Licence is distributed on an "AS IS" basis, +* WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. +* See the Licence for the specific language governing permissions and +* limitations under the Licence. +*/ + +using System; using System.Collections.Generic; using TUGraz.VectoCore.Exceptions; using TUGraz.VectoCore.Models.Connector.Ports; diff --git a/VectoCore/Models/SimulationComponent/Impl/AxleGear.cs b/VectoCore/Models/SimulationComponent/Impl/AxleGear.cs index fa7b4d1130fb8a3ef6e064b757d070db44e08f51..293a0b593a0c44e2003b2aa10be50c62fd6b9f12 100644 --- a/VectoCore/Models/SimulationComponent/Impl/AxleGear.cs +++ b/VectoCore/Models/SimulationComponent/Impl/AxleGear.cs @@ -1,4 +1,20 @@ -using TUGraz.VectoCore.Models.Connector.Ports; +/* +* Copyright 2015 European Union +* +* Licensed under the EUPL (the "Licence"); +* You may not use this work except in compliance with the Licence. +* You may obtain a copy of the Licence at: +* +* http://ec.europa.eu/idabc/eupl5 +* +* Unless required by applicable law or agreed to in writing, software +* distributed under the Licence is distributed on an "AS IS" basis, +* WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. +* See the Licence for the specific language governing permissions and +* limitations under the Licence. +*/ + +using TUGraz.VectoCore.Models.Connector.Ports; using TUGraz.VectoCore.Models.Simulation.Data; using TUGraz.VectoCore.Models.Simulation.Impl; using TUGraz.VectoCore.Models.SimulationComponent.Data.Gearbox; diff --git a/VectoCore/Models/SimulationComponent/Impl/Brakes.cs b/VectoCore/Models/SimulationComponent/Impl/Brakes.cs index 6ab0edf518a93614b02a66319a873539cae637a6..36ca2dd1f6b29455f50e7d19149f1a9c69ebeeea 100644 --- a/VectoCore/Models/SimulationComponent/Impl/Brakes.cs +++ b/VectoCore/Models/SimulationComponent/Impl/Brakes.cs @@ -1,4 +1,20 @@ -using System; +/* +* Copyright 2015 European Union +* +* Licensed under the EUPL (the "Licence"); +* You may not use this work except in compliance with the Licence. +* You may obtain a copy of the Licence at: +* +* http://ec.europa.eu/idabc/eupl5 +* +* Unless required by applicable law or agreed to in writing, software +* distributed under the Licence is distributed on an "AS IS" basis, +* WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. +* See the Licence for the specific language governing permissions and +* limitations under the Licence. +*/ + +using System; using TUGraz.VectoCore.Exceptions; using TUGraz.VectoCore.Models.Connector.Ports; using TUGraz.VectoCore.Models.Simulation; diff --git a/VectoCore/Models/SimulationComponent/Impl/Clutch.cs b/VectoCore/Models/SimulationComponent/Impl/Clutch.cs index 84fb25be735210df14604d1892d48093b40ee8af..dcd4aaf4618345d64bdc2e394756325cb4c2f01a 100644 --- a/VectoCore/Models/SimulationComponent/Impl/Clutch.cs +++ b/VectoCore/Models/SimulationComponent/Impl/Clutch.cs @@ -1,4 +1,20 @@ -using TUGraz.VectoCore.Configuration; +/* +* Copyright 2015 European Union +* +* Licensed under the EUPL (the "Licence"); +* You may not use this work except in compliance with the Licence. +* You may obtain a copy of the Licence at: +* +* http://ec.europa.eu/idabc/eupl5 +* +* Unless required by applicable law or agreed to in writing, software +* distributed under the Licence is distributed on an "AS IS" basis, +* WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. +* See the Licence for the specific language governing permissions and +* limitations under the Licence. +*/ + +using TUGraz.VectoCore.Configuration; using TUGraz.VectoCore.Models.Connector.Ports; using TUGraz.VectoCore.Models.Simulation; using TUGraz.VectoCore.Models.Simulation.Data; diff --git a/VectoCore/Models/SimulationComponent/Impl/CombustionEngine.cs b/VectoCore/Models/SimulationComponent/Impl/CombustionEngine.cs index 0ae4c257d05e5b1a7843e7aa4753a42bb0c770b3..c2f54fee04c2b0dfbbe7929f56d19ed9b3059534 100644 --- a/VectoCore/Models/SimulationComponent/Impl/CombustionEngine.cs +++ b/VectoCore/Models/SimulationComponent/Impl/CombustionEngine.cs @@ -1,3 +1,19 @@ +/* +* Copyright 2015 European Union +* +* Licensed under the EUPL (the "Licence"); +* You may not use this work except in compliance with the Licence. +* You may obtain a copy of the Licence at: +* +* http://ec.europa.eu/idabc/eupl5 +* +* Unless required by applicable law or agreed to in writing, software +* distributed under the Licence is distributed on an "AS IS" basis, +* WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. +* See the Licence for the specific language governing permissions and +* limitations under the Licence. +*/ + using System; using System.Collections.Generic; using System.Linq; diff --git a/VectoCore/Models/SimulationComponent/Impl/DefaultDriverStrategy.cs b/VectoCore/Models/SimulationComponent/Impl/DefaultDriverStrategy.cs index eee3a3addf9d9a879977e3dd353bd816e016195c..3c899dedea9ff695372fef4e4cc1a9622482afce 100644 --- a/VectoCore/Models/SimulationComponent/Impl/DefaultDriverStrategy.cs +++ b/VectoCore/Models/SimulationComponent/Impl/DefaultDriverStrategy.cs @@ -1,4 +1,20 @@ -using System; +/* +* Copyright 2015 European Union +* +* Licensed under the EUPL (the "Licence"); +* You may not use this work except in compliance with the Licence. +* You may obtain a copy of the Licence at: +* +* http://ec.europa.eu/idabc/eupl5 +* +* Unless required by applicable law or agreed to in writing, software +* distributed under the Licence is distributed on an "AS IS" basis, +* WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. +* See the Licence for the specific language governing permissions and +* limitations under the Licence. +*/ + +using System; using System.Collections.Generic; using System.Diagnostics; using System.Linq; diff --git a/VectoCore/Models/SimulationComponent/Impl/DistanceBasedDrivingCycle.cs b/VectoCore/Models/SimulationComponent/Impl/DistanceBasedDrivingCycle.cs index 5192052509da306b5d4deeead02fc2d3dc61820f..ba1cb5071d3a5a326b9e0b21d321e75af0eed581 100644 --- a/VectoCore/Models/SimulationComponent/Impl/DistanceBasedDrivingCycle.cs +++ b/VectoCore/Models/SimulationComponent/Impl/DistanceBasedDrivingCycle.cs @@ -1,3 +1,19 @@ +/* +* Copyright 2015 European Union +* +* Licensed under the EUPL (the "Licence"); +* You may not use this work except in compliance with the Licence. +* You may obtain a copy of the Licence at: +* +* http://ec.europa.eu/idabc/eupl5 +* +* Unless required by applicable law or agreed to in writing, software +* distributed under the Licence is distributed on an "AS IS" basis, +* WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. +* See the Licence for the specific language governing permissions and +* limitations under the Licence. +*/ + using System; using System.Collections.Generic; using System.Linq; diff --git a/VectoCore/Models/SimulationComponent/Impl/Driver.cs b/VectoCore/Models/SimulationComponent/Impl/Driver.cs index d2ee769e33823c14bc37fba04ca7ad8b7e191dda..caa8869dde5bd81d98b311246fd417a939f4febb 100644 --- a/VectoCore/Models/SimulationComponent/Impl/Driver.cs +++ b/VectoCore/Models/SimulationComponent/Impl/Driver.cs @@ -1,3 +1,19 @@ +/* +* Copyright 2015 European Union +* +* Licensed under the EUPL (the "Licence"); +* You may not use this work except in compliance with the Licence. +* You may obtain a copy of the Licence at: +* +* http://ec.europa.eu/idabc/eupl5 +* +* Unless required by applicable law or agreed to in writing, software +* distributed under the Licence is distributed on an "AS IS" basis, +* WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. +* See the Licence for the specific language governing permissions and +* limitations under the Licence. +*/ + using System; using System.Collections.Generic; using System.Diagnostics; diff --git a/VectoCore/Models/SimulationComponent/Impl/EngineOnlyCombustionEngine.cs b/VectoCore/Models/SimulationComponent/Impl/EngineOnlyCombustionEngine.cs index dace35c05d91a638e53177e8e04412bd1f98862e..69c447a2d56730c5cce1ef26c04e6319f86dfb69 100644 --- a/VectoCore/Models/SimulationComponent/Impl/EngineOnlyCombustionEngine.cs +++ b/VectoCore/Models/SimulationComponent/Impl/EngineOnlyCombustionEngine.cs @@ -1,4 +1,20 @@ -using System.Collections.Generic; +/* +* Copyright 2015 European Union +* +* Licensed under the EUPL (the "Licence"); +* You may not use this work except in compliance with the Licence. +* You may obtain a copy of the Licence at: +* +* http://ec.europa.eu/idabc/eupl5 +* +* Unless required by applicable law or agreed to in writing, software +* distributed under the Licence is distributed on an "AS IS" basis, +* WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. +* See the Licence for the specific language governing permissions and +* limitations under the Licence. +*/ + +using System.Collections.Generic; using TUGraz.VectoCore.Models.Connector.Ports; using TUGraz.VectoCore.Models.Connector.Ports.Impl; using TUGraz.VectoCore.Models.Simulation; diff --git a/VectoCore/Models/SimulationComponent/Impl/EngineOnlyDrivingCycle.cs b/VectoCore/Models/SimulationComponent/Impl/EngineOnlyDrivingCycle.cs index e21d22d6f5a8aa1616d80bca032e4f8e25021b09..b23f7011b0d42bc9941634d592bea48bfc19cdbf 100644 --- a/VectoCore/Models/SimulationComponent/Impl/EngineOnlyDrivingCycle.cs +++ b/VectoCore/Models/SimulationComponent/Impl/EngineOnlyDrivingCycle.cs @@ -1,3 +1,19 @@ +/* +* Copyright 2015 European Union +* +* Licensed under the EUPL (the "Licence"); +* You may not use this work except in compliance with the Licence. +* You may obtain a copy of the Licence at: +* +* http://ec.europa.eu/idabc/eupl5 +* +* Unless required by applicable law or agreed to in writing, software +* distributed under the Licence is distributed on an "AS IS" basis, +* WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. +* See the Licence for the specific language governing permissions and +* limitations under the Licence. +*/ + using System; using System.Collections.Generic; using System.Linq; diff --git a/VectoCore/Models/SimulationComponent/Impl/EngineOnlyGearbox.cs b/VectoCore/Models/SimulationComponent/Impl/EngineOnlyGearbox.cs index 5cd48bba7beb326f779c868b7f316d44c9937af7..c97788eab0feab1fb5c88037f63540b17f990145 100644 --- a/VectoCore/Models/SimulationComponent/Impl/EngineOnlyGearbox.cs +++ b/VectoCore/Models/SimulationComponent/Impl/EngineOnlyGearbox.cs @@ -1,3 +1,19 @@ +/* +* Copyright 2015 European Union +* +* Licensed under the EUPL (the "Licence"); +* You may not use this work except in compliance with the Licence. +* You may obtain a copy of the Licence at: +* +* http://ec.europa.eu/idabc/eupl5 +* +* Unless required by applicable law or agreed to in writing, software +* distributed under the Licence is distributed on an "AS IS" basis, +* WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. +* See the Licence for the specific language governing permissions and +* limitations under the Licence. +*/ + using System; using TUGraz.VectoCore.Exceptions; using TUGraz.VectoCore.Models.Connector.Ports; diff --git a/VectoCore/Models/SimulationComponent/Impl/Gearbox.cs b/VectoCore/Models/SimulationComponent/Impl/Gearbox.cs index ebb6565f850fe214f61e10198c47d79b0d090c8e..6498ece4abbf70618853d3497fc69d293994699e 100644 --- a/VectoCore/Models/SimulationComponent/Impl/Gearbox.cs +++ b/VectoCore/Models/SimulationComponent/Impl/Gearbox.cs @@ -1,4 +1,20 @@ -using System.Diagnostics; +/* +* Copyright 2015 European Union +* +* Licensed under the EUPL (the "Licence"); +* You may not use this work except in compliance with the Licence. +* You may obtain a copy of the Licence at: +* +* http://ec.europa.eu/idabc/eupl5 +* +* Unless required by applicable law or agreed to in writing, software +* distributed under the Licence is distributed on an "AS IS" basis, +* WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. +* See the Licence for the specific language governing permissions and +* limitations under the Licence. +*/ + +using System.Diagnostics; using TUGraz.VectoCore.Configuration; using TUGraz.VectoCore.Exceptions; using TUGraz.VectoCore.Models.Connector.Ports; diff --git a/VectoCore/Models/SimulationComponent/Impl/Retarder.cs b/VectoCore/Models/SimulationComponent/Impl/Retarder.cs index c071013fa36a67d864b65a6bf07de08f04273a0a..e530efb4f73a5bf7ae4298ecfb212408a1ac6bee 100644 --- a/VectoCore/Models/SimulationComponent/Impl/Retarder.cs +++ b/VectoCore/Models/SimulationComponent/Impl/Retarder.cs @@ -1,4 +1,20 @@ -using System; +/* +* Copyright 2015 European Union +* +* Licensed under the EUPL (the "Licence"); +* You may not use this work except in compliance with the Licence. +* You may obtain a copy of the Licence at: +* +* http://ec.europa.eu/idabc/eupl5 +* +* Unless required by applicable law or agreed to in writing, software +* distributed under the Licence is distributed on an "AS IS" basis, +* WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. +* See the Licence for the specific language governing permissions and +* limitations under the Licence. +*/ + +using System; using TUGraz.VectoCore.Models.Connector.Ports; using TUGraz.VectoCore.Models.Simulation; using TUGraz.VectoCore.Models.Simulation.Data; diff --git a/VectoCore/Models/SimulationComponent/Impl/ShiftStrategy.cs b/VectoCore/Models/SimulationComponent/Impl/ShiftStrategy.cs index dcc8ad801549696745b114ad166956ea2aaec6f9..5fa7d96e14d20d774dc44e9a563379faa7c6d495 100644 --- a/VectoCore/Models/SimulationComponent/Impl/ShiftStrategy.cs +++ b/VectoCore/Models/SimulationComponent/Impl/ShiftStrategy.cs @@ -1,3 +1,19 @@ +/* +* Copyright 2015 European Union +* +* Licensed under the EUPL (the "Licence"); +* You may not use this work except in compliance with the Licence. +* You may obtain a copy of the Licence at: +* +* http://ec.europa.eu/idabc/eupl5 +* +* Unless required by applicable law or agreed to in writing, software +* distributed under the Licence is distributed on an "AS IS" basis, +* WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. +* See the Licence for the specific language governing permissions and +* limitations under the Licence. +*/ + using System; using TUGraz.VectoCore.Configuration; using TUGraz.VectoCore.Models.Connector.Ports.Impl; diff --git a/VectoCore/Models/SimulationComponent/Impl/TimeBasedDrivingCycle.cs b/VectoCore/Models/SimulationComponent/Impl/TimeBasedDrivingCycle.cs index fe36885feebacd49fbb0028633e2f8dc8298d1b8..ce5e90aef269a369aa1caf58482501db5b909534 100644 --- a/VectoCore/Models/SimulationComponent/Impl/TimeBasedDrivingCycle.cs +++ b/VectoCore/Models/SimulationComponent/Impl/TimeBasedDrivingCycle.cs @@ -1,3 +1,19 @@ +/* +* Copyright 2015 European Union +* +* Licensed under the EUPL (the "Licence"); +* You may not use this work except in compliance with the Licence. +* You may obtain a copy of the Licence at: +* +* http://ec.europa.eu/idabc/eupl5 +* +* Unless required by applicable law or agreed to in writing, software +* distributed under the Licence is distributed on an "AS IS" basis, +* WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. +* See the Licence for the specific language governing permissions and +* limitations under the Licence. +*/ + using System; using TUGraz.VectoCore.Models.Connector.Ports; using TUGraz.VectoCore.Models.Connector.Ports.Impl; diff --git a/VectoCore/Models/SimulationComponent/Impl/Vehicle.cs b/VectoCore/Models/SimulationComponent/Impl/Vehicle.cs index 7ef951a3a7936f2127651f2caefad0e697b70074..45219954b683895a32accdf261824de5cec9cf95 100644 --- a/VectoCore/Models/SimulationComponent/Impl/Vehicle.cs +++ b/VectoCore/Models/SimulationComponent/Impl/Vehicle.cs @@ -1,4 +1,20 @@ -using System; +/* +* Copyright 2015 European Union +* +* Licensed under the EUPL (the "Licence"); +* You may not use this work except in compliance with the Licence. +* You may obtain a copy of the Licence at: +* +* http://ec.europa.eu/idabc/eupl5 +* +* Unless required by applicable law or agreed to in writing, software +* distributed under the Licence is distributed on an "AS IS" basis, +* WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. +* See the Licence for the specific language governing permissions and +* limitations under the Licence. +*/ + +using System; using TUGraz.VectoCore.Configuration; using TUGraz.VectoCore.Models.Connector.Ports; using TUGraz.VectoCore.Models.Declaration; diff --git a/VectoCore/Models/SimulationComponent/Impl/Wheels.cs b/VectoCore/Models/SimulationComponent/Impl/Wheels.cs index 3f3f598399ccf41d8302e593ef53ba392c37b1cb..82c374bb2f446e096f311605ee94eb7fcb1f85a6 100644 --- a/VectoCore/Models/SimulationComponent/Impl/Wheels.cs +++ b/VectoCore/Models/SimulationComponent/Impl/Wheels.cs @@ -1,3 +1,19 @@ +/* +* Copyright 2015 European Union +* +* Licensed under the EUPL (the "Licence"); +* You may not use this work except in compliance with the Licence. +* You may obtain a copy of the Licence at: +* +* http://ec.europa.eu/idabc/eupl5 +* +* Unless required by applicable law or agreed to in writing, software +* distributed under the Licence is distributed on an "AS IS" basis, +* WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. +* See the Licence for the specific language governing permissions and +* limitations under the Licence. +*/ + using System; using TUGraz.VectoCore.Models.Connector.Ports; using TUGraz.VectoCore.Models.Simulation; diff --git a/VectoCore/Models/SimulationComponent/VectoSimulationComponent.cs b/VectoCore/Models/SimulationComponent/VectoSimulationComponent.cs index 207bb4b4c54abd18f765c4632ad2cddcd9bccdad..9df2ed98c7ce540e75bba9ab36d61d397191fdb5 100644 --- a/VectoCore/Models/SimulationComponent/VectoSimulationComponent.cs +++ b/VectoCore/Models/SimulationComponent/VectoSimulationComponent.cs @@ -1,3 +1,19 @@ +/* +* Copyright 2015 European Union +* +* Licensed under the EUPL (the "Licence"); +* You may not use this work except in compliance with the Licence. +* You may obtain a copy of the Licence at: +* +* http://ec.europa.eu/idabc/eupl5 +* +* Unless required by applicable law or agreed to in writing, software +* distributed under the Licence is distributed on an "AS IS" basis, +* WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. +* See the Licence for the specific language governing permissions and +* limitations under the Licence. +*/ + using System; using TUGraz.VectoCore.Models.Simulation; using TUGraz.VectoCore.Models.Simulation.Data; diff --git a/VectoCore/Properties/AssemblyInfo.cs b/VectoCore/Properties/AssemblyInfo.cs index 417914863d34b28d66dbff8c426ee3f2cdebc0a7..330385c5bfaa463f42db83e62968b5e25d4e2f9b 100644 --- a/VectoCore/Properties/AssemblyInfo.cs +++ b/VectoCore/Properties/AssemblyInfo.cs @@ -1,4 +1,20 @@ -using System.Reflection; +/* +* Copyright 2015 European Union +* +* Licensed under the EUPL (the "Licence"); +* You may not use this work except in compliance with the Licence. +* You may obtain a copy of the Licence at: +* +* http://ec.europa.eu/idabc/eupl5 +* +* Unless required by applicable law or agreed to in writing, software +* distributed under the Licence is distributed on an "AS IS" basis, +* WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. +* See the Licence for the specific language governing permissions and +* limitations under the Licence. +*/ + +using System.Reflection; using System.Runtime.InteropServices; [assembly: AssemblyTitle("VectoCore")] diff --git a/VectoCore/Properties/Version.cs b/VectoCore/Properties/Version.cs index 9680f4689a839af2e8b611743fc6714001d50f13..ab1f792c328edd412c5282a822171ac4df8d3ce8 100644 --- a/VectoCore/Properties/Version.cs +++ b/VectoCore/Properties/Version.cs @@ -1,4 +1,20 @@ -using System.Reflection; +/* +* Copyright 2015 European Union +* +* Licensed under the EUPL (the "Licence"); +* You may not use this work except in compliance with the Licence. +* You may obtain a copy of the Licence at: +* +* http://ec.europa.eu/idabc/eupl5 +* +* Unless required by applicable law or agreed to in writing, software +* distributed under the Licence is distributed on an "AS IS" basis, +* WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. +* See the Licence for the specific language governing permissions and +* limitations under the Licence. +*/ + +using System.Reflection; // generated on 11.11.2015 13:31:44 [assembly: AssemblyVersion("3.0.1.314")] [assembly: AssemblyFileVersion("3.0.1.314")] diff --git a/VectoCore/Utils/DataTableExtensionMethods.cs b/VectoCore/Utils/DataTableExtensionMethods.cs index e08d00b1329fe9a2e4156371e6d062358298722d..e941e0d60d4a43e16d9c45fb586decfdd975c8d0 100644 --- a/VectoCore/Utils/DataTableExtensionMethods.cs +++ b/VectoCore/Utils/DataTableExtensionMethods.cs @@ -1,3 +1,19 @@ +/* +* Copyright 2015 European Union +* +* Licensed under the EUPL (the "Licence"); +* You may not use this work except in compliance with the Licence. +* You may obtain a copy of the Licence at: +* +* http://ec.europa.eu/idabc/eupl5 +* +* Unless required by applicable law or agreed to in writing, software +* distributed under the Licence is distributed on an "AS IS" basis, +* WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. +* See the Licence for the specific language governing permissions and +* limitations under the Licence. +*/ + using System; using System.Collections.Generic; using System.Data; diff --git a/VectoCore/Utils/DateTimeFallbackDeserializer.cs b/VectoCore/Utils/DateTimeFallbackDeserializer.cs index 0863e67aabcbe6fec6048d9bd41e7329a12d7a8d..82495ac2ed6166420b7e5769917abfc72cb8ffb0 100644 --- a/VectoCore/Utils/DateTimeFallbackDeserializer.cs +++ b/VectoCore/Utils/DateTimeFallbackDeserializer.cs @@ -1,3 +1,19 @@ +/* +* Copyright 2015 European Union +* +* Licensed under the EUPL (the "Licence"); +* You may not use this work except in compliance with the Licence. +* You may obtain a copy of the Licence at: +* +* http://ec.europa.eu/idabc/eupl5 +* +* Unless required by applicable law or agreed to in writing, software +* distributed under the Licence is distributed on an "AS IS" basis, +* WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. +* See the Licence for the specific language governing permissions and +* limitations under the Licence. +*/ + using System; using System.Globalization; using Newtonsoft.Json; diff --git a/VectoCore/Utils/DelauneyMap.cs b/VectoCore/Utils/DelauneyMap.cs index 79878e2b0697e15f164bcb39b67f9e9c5733b9c5..7de44fa36bca8c32de3ba6bca10beeedeb5fe3de 100644 --- a/VectoCore/Utils/DelauneyMap.cs +++ b/VectoCore/Utils/DelauneyMap.cs @@ -1,4 +1,20 @@ -using System; +/* +* Copyright 2015 European Union +* +* Licensed under the EUPL (the "Licence"); +* You may not use this work except in compliance with the Licence. +* You may obtain a copy of the Licence at: +* +* http://ec.europa.eu/idabc/eupl5 +* +* Unless required by applicable law or agreed to in writing, software +* distributed under the Licence is distributed on an "AS IS" basis, +* WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. +* See the Licence for the specific language governing permissions and +* limitations under the Licence. +*/ + +using System; using System.Collections.Generic; using System.Diagnostics.Contracts; using System.Linq; diff --git a/VectoCore/Utils/DoubleExtensionMethods.cs b/VectoCore/Utils/DoubleExtensionMethods.cs index 4ff037e5621ca1d99b590f88f45a6c4978aedb5e..c6eda457c489d37ff677596eb2bde0df55c54d70 100644 --- a/VectoCore/Utils/DoubleExtensionMethods.cs +++ b/VectoCore/Utils/DoubleExtensionMethods.cs @@ -1,3 +1,19 @@ +/* +* Copyright 2015 European Union +* +* Licensed under the EUPL (the "Licence"); +* You may not use this work except in compliance with the Licence. +* You may obtain a copy of the Licence at: +* +* http://ec.europa.eu/idabc/eupl5 +* +* Unless required by applicable law or agreed to in writing, software +* distributed under the Licence is distributed on an "AS IS" basis, +* WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. +* See the Licence for the specific language governing permissions and +* limitations under the Licence. +*/ + using System; using System.Collections.Generic; using System.Linq; diff --git a/VectoCore/Utils/EnumHelper.cs b/VectoCore/Utils/EnumHelper.cs index 000a04b68c3901e6f8e5f297b10ae947115ea619..6c135a97d1c790221747de991e42222c5b256d11 100644 --- a/VectoCore/Utils/EnumHelper.cs +++ b/VectoCore/Utils/EnumHelper.cs @@ -1,3 +1,19 @@ +/* +* Copyright 2015 European Union +* +* Licensed under the EUPL (the "Licence"); +* You may not use this work except in compliance with the Licence. +* You may obtain a copy of the Licence at: +* +* http://ec.europa.eu/idabc/eupl5 +* +* Unless required by applicable law or agreed to in writing, software +* distributed under the Licence is distributed on an "AS IS" basis, +* WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. +* See the Licence for the specific language governing permissions and +* limitations under the Licence. +*/ + using System; using System.Collections.Generic; using System.Linq; diff --git a/VectoCore/Utils/Formulas.cs b/VectoCore/Utils/Formulas.cs index 1067468cf298ebd1b4d7a07331961d77eb57f35d..97e19346c5acb1364e2b079be8505f48e64056ef 100644 --- a/VectoCore/Utils/Formulas.cs +++ b/VectoCore/Utils/Formulas.cs @@ -1,3 +1,19 @@ +/* +* Copyright 2015 European Union +* +* Licensed under the EUPL (the "Licence"); +* You may not use this work except in compliance with the Licence. +* You may obtain a copy of the Licence at: +* +* http://ec.europa.eu/idabc/eupl5 +* +* Unless required by applicable law or agreed to in writing, software +* distributed under the Licence is distributed on an "AS IS" basis, +* WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. +* See the Licence for the specific language governing permissions and +* limitations under the Licence. +*/ + using TUGraz.VectoCore.Exceptions; namespace TUGraz.VectoCore.Utils diff --git a/VectoCore/Utils/IEnumberableExtensionMethods.cs b/VectoCore/Utils/IEnumberableExtensionMethods.cs index 48cc64ca4bc85515389666dcfd381d7734be3145..c9f3c32e048501e45e7de6d48b2101a2c40528b3 100644 --- a/VectoCore/Utils/IEnumberableExtensionMethods.cs +++ b/VectoCore/Utils/IEnumberableExtensionMethods.cs @@ -1,3 +1,19 @@ +/* +* Copyright 2015 European Union +* +* Licensed under the EUPL (the "Licence"); +* You may not use this work except in compliance with the Licence. +* You may obtain a copy of the Licence at: +* +* http://ec.europa.eu/idabc/eupl5 +* +* Unless required by applicable law or agreed to in writing, software +* distributed under the Licence is distributed on an "AS IS" basis, +* WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. +* See the Licence for the specific language governing permissions and +* limitations under the Licence. +*/ + using System; using System.Collections.Generic; using System.Linq; diff --git a/VectoCore/Utils/IntExtensionMethods.cs b/VectoCore/Utils/IntExtensionMethods.cs index 13dc8b28b644e38b772a08b081cc473f866521f8..5957f628484bd908374f3917868a664761bace91 100644 --- a/VectoCore/Utils/IntExtensionMethods.cs +++ b/VectoCore/Utils/IntExtensionMethods.cs @@ -1,3 +1,19 @@ +/* +* Copyright 2015 European Union +* +* Licensed under the EUPL (the "Licence"); +* You may not use this work except in compliance with the Licence. +* You may obtain a copy of the Licence at: +* +* http://ec.europa.eu/idabc/eupl5 +* +* Unless required by applicable law or agreed to in writing, software +* distributed under the Licence is distributed on an "AS IS" basis, +* WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. +* See the Licence for the specific language governing permissions and +* limitations under the Licence. +*/ + using System; using System.Diagnostics; diff --git a/VectoCore/Utils/Physics.cs b/VectoCore/Utils/Physics.cs index 2b18f0625e35034482339a7be26aec20a67335b5..bdd77f597ea6fcb0be8f1c77f321548ea3241aa2 100644 --- a/VectoCore/Utils/Physics.cs +++ b/VectoCore/Utils/Physics.cs @@ -1,4 +1,20 @@ -namespace TUGraz.VectoCore.Utils +/* +* Copyright 2015 European Union +* +* Licensed under the EUPL (the "Licence"); +* You may not use this work except in compliance with the Licence. +* You may obtain a copy of the Licence at: +* +* http://ec.europa.eu/idabc/eupl5 +* +* Unless required by applicable law or agreed to in writing, software +* distributed under the Licence is distributed on an "AS IS" basis, +* WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. +* See the Licence for the specific language governing permissions and +* limitations under the Licence. +*/ + +namespace TUGraz.VectoCore.Utils { public class Physics { diff --git a/VectoCore/Utils/RessourceHelper.cs b/VectoCore/Utils/RessourceHelper.cs index e0e5d043e19227a001051af3e610c48e44184e97..c64275cb78fb397af3970200be6c457a37d0576b 100644 --- a/VectoCore/Utils/RessourceHelper.cs +++ b/VectoCore/Utils/RessourceHelper.cs @@ -1,3 +1,19 @@ +/* +* Copyright 2015 European Union +* +* Licensed under the EUPL (the "Licence"); +* You may not use this work except in compliance with the Licence. +* You may obtain a copy of the Licence at: +* +* http://ec.europa.eu/idabc/eupl5 +* +* Unless required by applicable law or agreed to in writing, software +* distributed under the Licence is distributed on an "AS IS" basis, +* WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. +* See the Licence for the specific language governing permissions and +* limitations under the Licence. +*/ + using System.IO; using System.Reflection; using TUGraz.VectoCore.Exceptions; diff --git a/VectoCore/Utils/SI.cs b/VectoCore/Utils/SI.cs index 77e17394349ec46ddbe8b8c9151dcd1d3e644c32..9bdb212824e4e8b26ec591b9d949aff5faf538ed 100644 --- a/VectoCore/Utils/SI.cs +++ b/VectoCore/Utils/SI.cs @@ -1,3 +1,19 @@ +/* +* Copyright 2015 European Union +* +* Licensed under the EUPL (the "Licence"); +* You may not use this work except in compliance with the Licence. +* You may obtain a copy of the Licence at: +* +* http://ec.europa.eu/idabc/eupl5 +* +* Unless required by applicable law or agreed to in writing, software +* distributed under the Licence is distributed on an "AS IS" basis, +* WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. +* See the Licence for the specific language governing permissions and +* limitations under the Licence. +*/ + using System; using System.Collections.Generic; using System.Diagnostics; diff --git a/VectoCore/Utils/StringExtensionMethods.cs b/VectoCore/Utils/StringExtensionMethods.cs index 2ad25c3d154baf6d14bd54fdfc0e611b15a9b4aa..0f114a61a9764645de5cab7a7f46116f54fa9e7c 100644 --- a/VectoCore/Utils/StringExtensionMethods.cs +++ b/VectoCore/Utils/StringExtensionMethods.cs @@ -1,3 +1,19 @@ +/* +* Copyright 2015 European Union +* +* Licensed under the EUPL (the "Licence"); +* You may not use this work except in compliance with the Licence. +* You may obtain a copy of the Licence at: +* +* http://ec.europa.eu/idabc/eupl5 +* +* Unless required by applicable law or agreed to in writing, software +* distributed under the Licence is distributed on an "AS IS" basis, +* WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. +* See the Licence for the specific language governing permissions and +* limitations under the Licence. +*/ + using System; using System.Collections.Generic; using System.Globalization; diff --git a/VectoCore/Utils/SwitchExtension.cs b/VectoCore/Utils/SwitchExtension.cs index 6cb0d33d0672b160a9a61710a6409e9d7afaa46f..4f31c41a124199b8b9ff1f0ed6b877777d5e878d 100644 --- a/VectoCore/Utils/SwitchExtension.cs +++ b/VectoCore/Utils/SwitchExtension.cs @@ -1,4 +1,20 @@ -using System; +/* +* Copyright 2015 European Union +* +* Licensed under the EUPL (the "Licence"); +* You may not use this work except in compliance with the Licence. +* You may obtain a copy of the Licence at: +* +* http://ec.europa.eu/idabc/eupl5 +* +* Unless required by applicable law or agreed to in writing, software +* distributed under the Licence is distributed on an "AS IS" basis, +* WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. +* See the Licence for the specific language governing permissions and +* limitations under the Licence. +*/ + +using System; using System.Diagnostics; namespace TUGraz.VectoCore.Utils diff --git a/VectoCore/Utils/VectoCSVFile.cs b/VectoCore/Utils/VectoCSVFile.cs index 9ca70bc5ee025d5812cd50bf5031f7de440d9a18..338050f4c154c9595d97585c53db57ef616f2540 100644 --- a/VectoCore/Utils/VectoCSVFile.cs +++ b/VectoCore/Utils/VectoCSVFile.cs @@ -1,3 +1,19 @@ +/* +* Copyright 2015 European Union +* +* Licensed under the EUPL (the "Licence"); +* You may not use this work except in compliance with the Licence. +* You may obtain a copy of the Licence at: +* +* http://ec.europa.eu/idabc/eupl5 +* +* Unless required by applicable law or agreed to in writing, software +* distributed under the Licence is distributed on an "AS IS" basis, +* WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. +* See the Licence for the specific language governing permissions and +* limitations under the Licence. +*/ + using System; using System.Collections.Generic; using System.Data; diff --git a/VectoCore/Utils/VectoMath.cs b/VectoCore/Utils/VectoMath.cs index 165bf6c095aed6619aec01a28ff1df6e3f82311c..726fccf68735a5036c34420b5f7cc0415a806fae 100644 --- a/VectoCore/Utils/VectoMath.cs +++ b/VectoCore/Utils/VectoMath.cs @@ -1,3 +1,19 @@ +/* +* Copyright 2015 European Union +* +* Licensed under the EUPL (the "Licence"); +* You may not use this work except in compliance with the Licence. +* You may obtain a copy of the Licence at: +* +* http://ec.europa.eu/idabc/eupl5 +* +* Unless required by applicable law or agreed to in writing, software +* distributed under the Licence is distributed on an "AS IS" basis, +* WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. +* See the Licence for the specific language governing permissions and +* limitations under the Licence. +*/ + using System; using System.Collections.Generic; using System.Diagnostics; diff --git a/VectoCoreTest/Exceptions/ExceptionTests.cs b/VectoCoreTest/Exceptions/ExceptionTests.cs index 04bff1cabffd637fdbfe8fdd98160c549a9b5b46..809a04b94c58466a9b124386c93c290b52fa3867 100644 --- a/VectoCoreTest/Exceptions/ExceptionTests.cs +++ b/VectoCoreTest/Exceptions/ExceptionTests.cs @@ -1,4 +1,20 @@ -using System; +/* +* Copyright 2015 European Union +* +* Licensed under the EUPL (the "Licence"); +* You may not use this work except in compliance with the Licence. +* You may obtain a copy of the Licence at: +* +* http://ec.europa.eu/idabc/eupl5 +* +* Unless required by applicable law or agreed to in writing, software +* distributed under the Licence is distributed on an "AS IS" basis, +* WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. +* See the Licence for the specific language governing permissions and +* limitations under the Licence. +*/ + +using System; using Microsoft.VisualStudio.TestTools.UnitTesting; using TUGraz.VectoCore.Exceptions; diff --git a/VectoCoreTest/FileIO/JsonTest.cs b/VectoCoreTest/FileIO/JsonTest.cs index 24be786a27bcaebb4be257bbaaf46c32cfbba824..72777bce4bc1b947b8500d59281ece08452f34af 100644 --- a/VectoCoreTest/FileIO/JsonTest.cs +++ b/VectoCoreTest/FileIO/JsonTest.cs @@ -1,4 +1,20 @@ -using System; +/* +* Copyright 2015 European Union +* +* Licensed under the EUPL (the "Licence"); +* You may not use this work except in compliance with the Licence. +* You may obtain a copy of the Licence at: +* +* http://ec.europa.eu/idabc/eupl5 +* +* Unless required by applicable law or agreed to in writing, software +* distributed under the Licence is distributed on an "AS IS" basis, +* WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. +* See the Licence for the specific language governing permissions and +* limitations under the Licence. +*/ + +using System; using Microsoft.VisualStudio.TestTools.UnitTesting; using Newtonsoft.Json; using TUGraz.VectoCore.FileIO; diff --git a/VectoCoreTest/FileIO/SimulationDataReaderTest.cs b/VectoCoreTest/FileIO/SimulationDataReaderTest.cs index 43756936518a1a14f5268adcaf76ffa47c82ff5d..f220c1e1700e53507a9768b5c0b227348dbfbbfd 100644 --- a/VectoCoreTest/FileIO/SimulationDataReaderTest.cs +++ b/VectoCoreTest/FileIO/SimulationDataReaderTest.cs @@ -1,4 +1,20 @@ -using System.IO; +/* +* Copyright 2015 European Union +* +* Licensed under the EUPL (the "Licence"); +* You may not use this work except in compliance with the Licence. +* You may obtain a copy of the Licence at: +* +* http://ec.europa.eu/idabc/eupl5 +* +* Unless required by applicable law or agreed to in writing, software +* distributed under the Licence is distributed on an "AS IS" basis, +* WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. +* See the Licence for the specific language governing permissions and +* limitations under the Licence. +*/ + +using System.IO; using System.Linq; using Microsoft.VisualStudio.TestTools.UnitTesting; using TUGraz.VectoCore.FileIO.Reader.Impl; diff --git a/VectoCoreTest/GraphProgram.cs b/VectoCoreTest/GraphProgram.cs index 63ef71808aaf1f309760526988ee875a6bc6031d..bfddd3fa27d778a9c571546947a6f2f91bdfd5a6 100644 --- a/VectoCoreTest/GraphProgram.cs +++ b/VectoCoreTest/GraphProgram.cs @@ -1,4 +1,20 @@ -namespace TUGraz.VectoCore.Tests +/* +* Copyright 2015 European Union +* +* Licensed under the EUPL (the "Licence"); +* You may not use this work except in compliance with the Licence. +* You may obtain a copy of the Licence at: +* +* http://ec.europa.eu/idabc/eupl5 +* +* Unless required by applicable law or agreed to in writing, software +* distributed under the Licence is distributed on an "AS IS" basis, +* WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. +* See the Licence for the specific language governing permissions and +* limitations under the Licence. +*/ + +namespace TUGraz.VectoCore.Tests { public class GraphProgram { diff --git a/VectoCoreTest/Integration/CoachPowerTrain.cs b/VectoCoreTest/Integration/CoachPowerTrain.cs index 74efb5b4b24118463fc96761d1c75f9d5e19a624..04ae7e9b686d74653bd08a28e617e584fa7e2bf3 100644 --- a/VectoCoreTest/Integration/CoachPowerTrain.cs +++ b/VectoCoreTest/Integration/CoachPowerTrain.cs @@ -1,3 +1,19 @@ +/* +* Copyright 2015 European Union +* +* Licensed under the EUPL (the "Licence"); +* You may not use this work except in compliance with the Licence. +* You may obtain a copy of the Licence at: +* +* http://ec.europa.eu/idabc/eupl5 +* +* Unless required by applicable law or agreed to in writing, software +* distributed under the Licence is distributed on an "AS IS" basis, +* WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. +* See the Licence for the specific language governing permissions and +* limitations under the Licence. +*/ + using System; using System.Collections.Generic; using System.Linq; diff --git a/VectoCoreTest/Integration/DeclarationReportTest.cs b/VectoCoreTest/Integration/DeclarationReportTest.cs index f463bc88ab7189b98038ecb27d17a52bd85ccbd3..f13988905e3f26843a887b7ef5830630d523b875 100644 --- a/VectoCoreTest/Integration/DeclarationReportTest.cs +++ b/VectoCoreTest/Integration/DeclarationReportTest.cs @@ -1,4 +1,20 @@ -using System.IO; +/* +* Copyright 2015 European Union +* +* Licensed under the EUPL (the "Licence"); +* You may not use this work except in compliance with the Licence. +* You may obtain a copy of the Licence at: +* +* http://ec.europa.eu/idabc/eupl5 +* +* Unless required by applicable law or agreed to in writing, software +* distributed under the Licence is distributed on an "AS IS" basis, +* WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. +* See the Licence for the specific language governing permissions and +* limitations under the Licence. +*/ + +using System.IO; using System.Threading; using Microsoft.VisualStudio.TestTools.UnitTesting; using TUGraz.VectoCore.Models.Simulation.Data; diff --git a/VectoCoreTest/Integration/DriverStrategy/DriverStrategyTestCoach.cs b/VectoCoreTest/Integration/DriverStrategy/DriverStrategyTestCoach.cs index 57d954c2361a39d7ad1a6a0922772eb2c5c1325b..64eee88e49a602c90b1bbfe2d76a5041ec1c0548 100644 --- a/VectoCoreTest/Integration/DriverStrategy/DriverStrategyTestCoach.cs +++ b/VectoCoreTest/Integration/DriverStrategy/DriverStrategyTestCoach.cs @@ -1,4 +1,20 @@ -using Microsoft.VisualStudio.TestTools.UnitTesting; +/* +* Copyright 2015 European Union +* +* Licensed under the EUPL (the "Licence"); +* You may not use this work except in compliance with the Licence. +* You may obtain a copy of the Licence at: +* +* http://ec.europa.eu/idabc/eupl5 +* +* Unless required by applicable law or agreed to in writing, software +* distributed under the Licence is distributed on an "AS IS" basis, +* WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. +* See the Licence for the specific language governing permissions and +* limitations under the Licence. +*/ + +using Microsoft.VisualStudio.TestTools.UnitTesting; using NLog; using TUGraz.VectoCore.Tests.Utils; diff --git a/VectoCoreTest/Integration/DriverStrategy/DriverStrategyTestTruck.cs b/VectoCoreTest/Integration/DriverStrategy/DriverStrategyTestTruck.cs index eaa1cbf0f13c8a7d641ea4f3a0e60392c5891f8d..f5df094fe11687b3d462862c5bc836924a27b4a1 100644 --- a/VectoCoreTest/Integration/DriverStrategy/DriverStrategyTestTruck.cs +++ b/VectoCoreTest/Integration/DriverStrategy/DriverStrategyTestTruck.cs @@ -1,4 +1,20 @@ -using Microsoft.VisualStudio.TestTools.UnitTesting; +/* +* Copyright 2015 European Union +* +* Licensed under the EUPL (the "Licence"); +* You may not use this work except in compliance with the Licence. +* You may obtain a copy of the Licence at: +* +* http://ec.europa.eu/idabc/eupl5 +* +* Unless required by applicable law or agreed to in writing, software +* distributed under the Licence is distributed on an "AS IS" basis, +* WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. +* See the Licence for the specific language governing permissions and +* limitations under the Licence. +*/ + +using Microsoft.VisualStudio.TestTools.UnitTesting; using NLog; using TUGraz.VectoCore.Tests.Utils; using TUGraz.VectoCore.Utils; diff --git a/VectoCoreTest/Integration/EngineOnlyCycle/EngineOnlyCycleTest.cs b/VectoCoreTest/Integration/EngineOnlyCycle/EngineOnlyCycleTest.cs index 7395499c42ed5e4a587650611255b2218e89b0a3..cd26e4ce82c119758f25dec81b6db179689685d4 100644 --- a/VectoCoreTest/Integration/EngineOnlyCycle/EngineOnlyCycleTest.cs +++ b/VectoCoreTest/Integration/EngineOnlyCycle/EngineOnlyCycleTest.cs @@ -1,3 +1,19 @@ +/* +* Copyright 2015 European Union +* +* Licensed under the EUPL (the "Licence"); +* You may not use this work except in compliance with the Licence. +* You may obtain a copy of the Licence at: +* +* http://ec.europa.eu/idabc/eupl5 +* +* Unless required by applicable law or agreed to in writing, software +* distributed under the Licence is distributed on an "AS IS" basis, +* WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. +* See the Licence for the specific language governing permissions and +* limitations under the Licence. +*/ + using System.Data; using System.IO; using System.Linq; diff --git a/VectoCoreTest/Integration/FullCycleDeclarationTest.cs b/VectoCoreTest/Integration/FullCycleDeclarationTest.cs index 715558f7e0d59d3e7399f9f58447fac7057613bd..9544f12171c658c9ef0b4e32de7c3a4826c257dd 100644 --- a/VectoCoreTest/Integration/FullCycleDeclarationTest.cs +++ b/VectoCoreTest/Integration/FullCycleDeclarationTest.cs @@ -1,4 +1,20 @@ -using System.IO; +/* +* Copyright 2015 European Union +* +* Licensed under the EUPL (the "Licence"); +* You may not use this work except in compliance with the Licence. +* You may obtain a copy of the Licence at: +* +* http://ec.europa.eu/idabc/eupl5 +* +* Unless required by applicable law or agreed to in writing, software +* distributed under the Licence is distributed on an "AS IS" basis, +* WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. +* See the Licence for the specific language governing permissions and +* limitations under the Licence. +*/ + +using System.IO; using System.Linq; using Microsoft.VisualStudio.TestTools.UnitTesting; using NLog; diff --git a/VectoCoreTest/Integration/SimpleDrivingCycles.cs b/VectoCoreTest/Integration/SimpleDrivingCycles.cs index 2498579e040b80834f56d3db847de394e6e8e270..839745fa3d8c46f66f69472de858262d8ed9a770 100644 --- a/VectoCoreTest/Integration/SimpleDrivingCycles.cs +++ b/VectoCoreTest/Integration/SimpleDrivingCycles.cs @@ -1,4 +1,20 @@ -using System.Diagnostics.CodeAnalysis; +/* +* Copyright 2015 European Union +* +* Licensed under the EUPL (the "Licence"); +* You may not use this work except in compliance with the Licence. +* You may obtain a copy of the Licence at: +* +* http://ec.europa.eu/idabc/eupl5 +* +* Unless required by applicable law or agreed to in writing, software +* distributed under the Licence is distributed on an "AS IS" basis, +* WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. +* See the Licence for the specific language governing permissions and +* limitations under the Licence. +*/ + +using System.Diagnostics.CodeAnalysis; using System.IO; using TUGraz.VectoCore.FileIO.Reader; using TUGraz.VectoCore.Models.SimulationComponent.Data; diff --git a/VectoCoreTest/Integration/SimulationRuns/FullPowertrain.cs b/VectoCoreTest/Integration/SimulationRuns/FullPowertrain.cs index 0bba865a0ce1d725df17550d5ca54c3ea62ddc07..9025fae8f5188f42f918a2c02df717810672028d 100644 --- a/VectoCoreTest/Integration/SimulationRuns/FullPowertrain.cs +++ b/VectoCoreTest/Integration/SimulationRuns/FullPowertrain.cs @@ -1,4 +1,20 @@ -using System; +/* +* Copyright 2015 European Union +* +* Licensed under the EUPL (the "Licence"); +* You may not use this work except in compliance with the Licence. +* You may obtain a copy of the Licence at: +* +* http://ec.europa.eu/idabc/eupl5 +* +* Unless required by applicable law or agreed to in writing, software +* distributed under the Licence is distributed on an "AS IS" basis, +* WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. +* See the Licence for the specific language governing permissions and +* limitations under the Licence. +*/ + +using System; using System.Collections.Generic; using System.Linq; using Microsoft.VisualStudio.TestTools.UnitTesting; diff --git a/VectoCoreTest/Integration/SimulationRuns/MinimalPowertrain.cs b/VectoCoreTest/Integration/SimulationRuns/MinimalPowertrain.cs index 2a0206f5ae60e46c791aab8e0e11af3b775545fc..173aa9d64bb0087a5bd89eb98516ec69dda84d3d 100644 --- a/VectoCoreTest/Integration/SimulationRuns/MinimalPowertrain.cs +++ b/VectoCoreTest/Integration/SimulationRuns/MinimalPowertrain.cs @@ -1,4 +1,20 @@ -using System.Collections.Generic; +/* +* Copyright 2015 European Union +* +* Licensed under the EUPL (the "Licence"); +* You may not use this work except in compliance with the Licence. +* You may obtain a copy of the Licence at: +* +* http://ec.europa.eu/idabc/eupl5 +* +* Unless required by applicable law or agreed to in writing, software +* distributed under the Licence is distributed on an "AS IS" basis, +* WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. +* See the Licence for the specific language governing permissions and +* limitations under the Licence. +*/ + +using System.Collections.Generic; using Microsoft.VisualStudio.TestTools.UnitTesting; using TUGraz.VectoCore.Configuration; using TUGraz.VectoCore.FileIO.Reader; diff --git a/VectoCoreTest/Integration/Truck40tPowerTrain.cs b/VectoCoreTest/Integration/Truck40tPowerTrain.cs index cbfc822fa55229e27fe4b4a7af88eaded3b7b7c0..979546d69f9d4530a8d2b4c66918fe2932ec907d 100644 --- a/VectoCoreTest/Integration/Truck40tPowerTrain.cs +++ b/VectoCoreTest/Integration/Truck40tPowerTrain.cs @@ -1,3 +1,19 @@ +/* +* Copyright 2015 European Union +* +* Licensed under the EUPL (the "Licence"); +* You may not use this work except in compliance with the Licence. +* You may obtain a copy of the Licence at: +* +* http://ec.europa.eu/idabc/eupl5 +* +* Unless required by applicable law or agreed to in writing, software +* distributed under the Licence is distributed on an "AS IS" basis, +* WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. +* See the Licence for the specific language governing permissions and +* limitations under the Licence. +*/ + using System; using System.Collections.Generic; using System.Linq; diff --git a/VectoCoreTest/Models/Declaration/DeclarationDataTest.cs b/VectoCoreTest/Models/Declaration/DeclarationDataTest.cs index 76252cfe08c4fcc0c1e50ced60697f38f938003d..5048196d716fc36ecd327d856cf71cc43bcf07a9 100644 --- a/VectoCoreTest/Models/Declaration/DeclarationDataTest.cs +++ b/VectoCoreTest/Models/Declaration/DeclarationDataTest.cs @@ -1,4 +1,20 @@ -using System; +/* +* Copyright 2015 European Union +* +* Licensed under the EUPL (the "Licence"); +* You may not use this work except in compliance with the Licence. +* You may obtain a copy of the Licence at: +* +* http://ec.europa.eu/idabc/eupl5 +* +* Unless required by applicable law or agreed to in writing, software +* distributed under the Licence is distributed on an "AS IS" basis, +* WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. +* See the Licence for the specific language governing permissions and +* limitations under the Licence. +*/ + +using System; using System.Collections.Generic; using System.IO; using System.Linq; diff --git a/VectoCoreTest/Models/Simulation/AuxTests.cs b/VectoCoreTest/Models/Simulation/AuxTests.cs index d3012f7e2526dd47124fc8d54a12e9fa4fc824ba..bfa5c511e4e5106581d2920544003a61b105ec19 100644 --- a/VectoCoreTest/Models/Simulation/AuxTests.cs +++ b/VectoCoreTest/Models/Simulation/AuxTests.cs @@ -1,4 +1,20 @@ -using TUGraz.VectoCore.Utils; +/* +* Copyright 2015 European Union +* +* Licensed under the EUPL (the "Licence"); +* You may not use this work except in compliance with the Licence. +* You may obtain a copy of the Licence at: +* +* http://ec.europa.eu/idabc/eupl5 +* +* Unless required by applicable law or agreed to in writing, software +* distributed under the Licence is distributed on an "AS IS" basis, +* WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. +* See the Licence for the specific language governing permissions and +* limitations under the Licence. +*/ + +using TUGraz.VectoCore.Utils; using TUGraz.VectoCore.Exceptions; using TUGraz.VectoCore.Tests.Utils; using TUGraz.VectoCore.FileIO.Reader; diff --git a/VectoCoreTest/Models/Simulation/DrivingCycleTests.cs b/VectoCoreTest/Models/Simulation/DrivingCycleTests.cs index cce5995c6b65d1b516ab0c0f42fe22fa37675a77..48f001f1b35277a12c419cd96b2c3d851040eadb 100644 --- a/VectoCoreTest/Models/Simulation/DrivingCycleTests.cs +++ b/VectoCoreTest/Models/Simulation/DrivingCycleTests.cs @@ -1,4 +1,20 @@ -using System; +/* +* Copyright 2015 European Union +* +* Licensed under the EUPL (the "Licence"); +* You may not use this work except in compliance with the Licence. +* You may obtain a copy of the Licence at: +* +* http://ec.europa.eu/idabc/eupl5 +* +* Unless required by applicable law or agreed to in writing, software +* distributed under the Licence is distributed on an "AS IS" basis, +* WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. +* See the Licence for the specific language governing permissions and +* limitations under the Licence. +*/ + +using System; using Microsoft.VisualStudio.TestTools.UnitTesting; using TUGraz.VectoCore.FileIO.Reader; using TUGraz.VectoCore.Models.Connector.Ports.Impl; diff --git a/VectoCoreTest/Models/Simulation/FactoryTest.cs b/VectoCoreTest/Models/Simulation/FactoryTest.cs index d568825e1647720d90cf3157adb93112f32c1866..2e6dc2feb36a0ba222365025baf98ec1eb3504db 100644 --- a/VectoCoreTest/Models/Simulation/FactoryTest.cs +++ b/VectoCoreTest/Models/Simulation/FactoryTest.cs @@ -1,4 +1,20 @@ -using System.Linq; +/* +* Copyright 2015 European Union +* +* Licensed under the EUPL (the "Licence"); +* You may not use this work except in compliance with the Licence. +* You may obtain a copy of the Licence at: +* +* http://ec.europa.eu/idabc/eupl5 +* +* Unless required by applicable law or agreed to in writing, software +* distributed under the Licence is distributed on an "AS IS" basis, +* WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. +* See the Licence for the specific language governing permissions and +* limitations under the Licence. +*/ + +using System.Linq; using Microsoft.VisualStudio.TestTools.UnitTesting; using TUGraz.VectoCore.Configuration; using TUGraz.VectoCore.Models.Simulation.Data; diff --git a/VectoCoreTest/Models/Simulation/PowerTrainBuilderTest.cs b/VectoCoreTest/Models/Simulation/PowerTrainBuilderTest.cs index 00fd71389b764a3387876da4f7849aae91d13828..db747f3f7f801380cf57eea2b0a6ada24072ae68 100644 --- a/VectoCoreTest/Models/Simulation/PowerTrainBuilderTest.cs +++ b/VectoCoreTest/Models/Simulation/PowerTrainBuilderTest.cs @@ -1,4 +1,20 @@ -using System.Linq; +/* +* Copyright 2015 European Union +* +* Licensed under the EUPL (the "Licence"); +* You may not use this work except in compliance with the Licence. +* You may obtain a copy of the Licence at: +* +* http://ec.europa.eu/idabc/eupl5 +* +* Unless required by applicable law or agreed to in writing, software +* distributed under the Licence is distributed on an "AS IS" basis, +* WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. +* See the Licence for the specific language governing permissions and +* limitations under the Licence. +*/ + +using System.Linq; using Microsoft.VisualStudio.TestTools.UnitTesting; using TUGraz.VectoCore.FileIO.Reader.Impl; using TUGraz.VectoCore.Models.Connector.Ports; diff --git a/VectoCoreTest/Models/Simulation/SimulationTests.cs b/VectoCoreTest/Models/Simulation/SimulationTests.cs index a5369cf178aa04da5cc719a2edcb3712a0aeaf4d..58e55345c6eb56f7f63ba127fa0e1aff12a359c2 100644 --- a/VectoCoreTest/Models/Simulation/SimulationTests.cs +++ b/VectoCoreTest/Models/Simulation/SimulationTests.cs @@ -1,4 +1,20 @@ -using System.Linq; +/* +* Copyright 2015 European Union +* +* Licensed under the EUPL (the "Licence"); +* You may not use this work except in compliance with the Licence. +* You may obtain a copy of the Licence at: +* +* http://ec.europa.eu/idabc/eupl5 +* +* Unless required by applicable law or agreed to in writing, software +* distributed under the Licence is distributed on an "AS IS" basis, +* WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. +* See the Licence for the specific language governing permissions and +* limitations under the Licence. +*/ + +using System.Linq; using Microsoft.VisualStudio.TestTools.UnitTesting; using TUGraz.VectoCore.Configuration; using TUGraz.VectoCore.Models.Simulation; diff --git a/VectoCoreTest/Models/Simulation/VechicleContainerTests.cs b/VectoCoreTest/Models/Simulation/VechicleContainerTests.cs index efaf3a98726671bc5107641e2a765959910e6f8a..81af16ed483965422c9087765e1281b7f8d60d43 100644 --- a/VectoCoreTest/Models/Simulation/VechicleContainerTests.cs +++ b/VectoCoreTest/Models/Simulation/VechicleContainerTests.cs @@ -1,4 +1,20 @@ -using Microsoft.VisualStudio.TestTools.UnitTesting; +/* +* Copyright 2015 European Union +* +* Licensed under the EUPL (the "Licence"); +* You may not use this work except in compliance with the Licence. +* You may obtain a copy of the Licence at: +* +* http://ec.europa.eu/idabc/eupl5 +* +* Unless required by applicable law or agreed to in writing, software +* distributed under the Licence is distributed on an "AS IS" basis, +* WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. +* See the Licence for the specific language governing permissions and +* limitations under the Licence. +*/ + +using Microsoft.VisualStudio.TestTools.UnitTesting; using TUGraz.VectoCore.FileIO.Reader.Impl; using TUGraz.VectoCore.Models.Simulation.Impl; using TUGraz.VectoCore.Models.SimulationComponent.Impl; diff --git a/VectoCoreTest/Models/SimulationComponent/ClutchTest.cs b/VectoCoreTest/Models/SimulationComponent/ClutchTest.cs index 88877f8ffa35350c357ff417891cc4367b3e1a4c..94fcfa713e0489ba19035d2ed7e35e78e41ad40b 100644 --- a/VectoCoreTest/Models/SimulationComponent/ClutchTest.cs +++ b/VectoCoreTest/Models/SimulationComponent/ClutchTest.cs @@ -1,4 +1,20 @@ -using System; +/* +* Copyright 2015 European Union +* +* Licensed under the EUPL (the "Licence"); +* You may not use this work except in compliance with the Licence. +* You may obtain a copy of the Licence at: +* +* http://ec.europa.eu/idabc/eupl5 +* +* Unless required by applicable law or agreed to in writing, software +* distributed under the Licence is distributed on an "AS IS" basis, +* WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. +* See the Licence for the specific language governing permissions and +* limitations under the Licence. +*/ + +using System; using Microsoft.VisualStudio.TestTools.UnitTesting; using TUGraz.VectoCore.FileIO.Reader.Impl; using TUGraz.VectoCore.Models.Connector.Ports; diff --git a/VectoCoreTest/Models/SimulationComponent/CombustionEngineTest.cs b/VectoCoreTest/Models/SimulationComponent/CombustionEngineTest.cs index c2ee3a17b21063a920bc7b90ee6d86719cbc1f00..a0effdc41fb840f22e4f17c6c15ac56bae4f34b2 100644 --- a/VectoCoreTest/Models/SimulationComponent/CombustionEngineTest.cs +++ b/VectoCoreTest/Models/SimulationComponent/CombustionEngineTest.cs @@ -1,3 +1,19 @@ +/* +* Copyright 2015 European Union +* +* Licensed under the EUPL (the "Licence"); +* You may not use this work except in compliance with the Licence. +* You may obtain a copy of the Licence at: +* +* http://ec.europa.eu/idabc/eupl5 +* +* Unless required by applicable law or agreed to in writing, software +* distributed under the Licence is distributed on an "AS IS" basis, +* WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. +* See the Licence for the specific language governing permissions and +* limitations under the Licence. +*/ + using System; using System.Collections.Generic; using System.Data; diff --git a/VectoCoreTest/Models/SimulationComponent/DistanceBasedDrivingCycleTest.cs b/VectoCoreTest/Models/SimulationComponent/DistanceBasedDrivingCycleTest.cs index 20b14da6ce2ea4b5ad4a1b2410d532c16954f04a..1ab2c2577d7ff230620628672bd88fd076ed3df8 100644 --- a/VectoCoreTest/Models/SimulationComponent/DistanceBasedDrivingCycleTest.cs +++ b/VectoCoreTest/Models/SimulationComponent/DistanceBasedDrivingCycleTest.cs @@ -1,4 +1,20 @@ -using System.Linq; +/* +* Copyright 2015 European Union +* +* Licensed under the EUPL (the "Licence"); +* You may not use this work except in compliance with the Licence. +* You may obtain a copy of the Licence at: +* +* http://ec.europa.eu/idabc/eupl5 +* +* Unless required by applicable law or agreed to in writing, software +* distributed under the Licence is distributed on an "AS IS" basis, +* WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. +* See the Licence for the specific language governing permissions and +* limitations under the Licence. +*/ + +using System.Linq; using Microsoft.VisualStudio.TestTools.UnitTesting; using TUGraz.VectoCore.Exceptions; using TUGraz.VectoCore.FileIO.Reader; diff --git a/VectoCoreTest/Models/SimulationComponent/DriverTest.cs b/VectoCoreTest/Models/SimulationComponent/DriverTest.cs index 1c2d869fccccc71ee156a30851c4a82bcd0dc19f..e195014e530d63bb5c73adf2f0611d6a96aa5546 100644 --- a/VectoCoreTest/Models/SimulationComponent/DriverTest.cs +++ b/VectoCoreTest/Models/SimulationComponent/DriverTest.cs @@ -1,4 +1,20 @@ -using System.Collections.Generic; +/* +* Copyright 2015 European Union +* +* Licensed under the EUPL (the "Licence"); +* You may not use this work except in compliance with the Licence. +* You may obtain a copy of the Licence at: +* +* http://ec.europa.eu/idabc/eupl5 +* +* Unless required by applicable law or agreed to in writing, software +* distributed under the Licence is distributed on an "AS IS" basis, +* WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. +* See the Licence for the specific language governing permissions and +* limitations under the Licence. +*/ + +using System.Collections.Generic; using System.Linq; using Microsoft.VisualStudio.TestTools.UnitTesting; using TUGraz.VectoCore.Configuration; diff --git a/VectoCoreTest/Models/SimulationComponent/GearboxPowertrainTest.cs b/VectoCoreTest/Models/SimulationComponent/GearboxPowertrainTest.cs index 6ea7988b0ef6e101385e6d9fefe28a8cd6d6de05..aeb1c6b5ce6e6db4a008454f09f72a88cd107c22 100644 --- a/VectoCoreTest/Models/SimulationComponent/GearboxPowertrainTest.cs +++ b/VectoCoreTest/Models/SimulationComponent/GearboxPowertrainTest.cs @@ -1,4 +1,20 @@ -using Microsoft.VisualStudio.TestTools.UnitTesting; +/* +* Copyright 2015 European Union +* +* Licensed under the EUPL (the "Licence"); +* You may not use this work except in compliance with the Licence. +* You may obtain a copy of the Licence at: +* +* http://ec.europa.eu/idabc/eupl5 +* +* Unless required by applicable law or agreed to in writing, software +* distributed under the Licence is distributed on an "AS IS" basis, +* WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. +* See the Licence for the specific language governing permissions and +* limitations under the Licence. +*/ + +using Microsoft.VisualStudio.TestTools.UnitTesting; using TUGraz.VectoCore.Models.Connector.Ports.Impl; using TUGraz.VectoCore.Tests.Integration; using TUGraz.VectoCore.Tests.Utils; diff --git a/VectoCoreTest/Models/SimulationComponent/GearboxTest.cs b/VectoCoreTest/Models/SimulationComponent/GearboxTest.cs index e04b2a2807cb83d67f573887fd266bb49922e7a7..2e00d192456ef8a855b8a22da5874d9b3b4305f8 100644 --- a/VectoCoreTest/Models/SimulationComponent/GearboxTest.cs +++ b/VectoCoreTest/Models/SimulationComponent/GearboxTest.cs @@ -1,4 +1,20 @@ -using System; +/* +* Copyright 2015 European Union +* +* Licensed under the EUPL (the "Licence"); +* You may not use this work except in compliance with the Licence. +* You may obtain a copy of the Licence at: +* +* http://ec.europa.eu/idabc/eupl5 +* +* Unless required by applicable law or agreed to in writing, software +* distributed under the Licence is distributed on an "AS IS" basis, +* WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. +* See the Licence for the specific language governing permissions and +* limitations under the Licence. +*/ + +using System; using System.Linq; using Microsoft.VisualStudio.TestTools.UnitTesting; using NLog; diff --git a/VectoCoreTest/Models/SimulationComponent/RetarderTest.cs b/VectoCoreTest/Models/SimulationComponent/RetarderTest.cs index 70bd286fa728e0fffe42957a5ad77a0464ce45da..14837f0fd9aaad4e1af0d2e2c6cd4a6c37bb5973 100644 --- a/VectoCoreTest/Models/SimulationComponent/RetarderTest.cs +++ b/VectoCoreTest/Models/SimulationComponent/RetarderTest.cs @@ -1,4 +1,20 @@ -using System; +/* +* Copyright 2015 European Union +* +* Licensed under the EUPL (the "Licence"); +* You may not use this work except in compliance with the Licence. +* You may obtain a copy of the Licence at: +* +* http://ec.europa.eu/idabc/eupl5 +* +* Unless required by applicable law or agreed to in writing, software +* distributed under the Licence is distributed on an "AS IS" basis, +* WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. +* See the Licence for the specific language governing permissions and +* limitations under the Licence. +*/ + +using System; using Microsoft.VisualStudio.TestTools.UnitTesting; using TUGraz.VectoCore.Models.Simulation.Impl; using TUGraz.VectoCore.Models.SimulationComponent.Data; diff --git a/VectoCoreTest/Models/SimulationComponent/VehicleTest.cs b/VectoCoreTest/Models/SimulationComponent/VehicleTest.cs index 2e9585604ecbb1a01080806c529703a8114b1ef1..b4f2f9ebc3428e117b163b33edfa21d65f0fd72b 100644 --- a/VectoCoreTest/Models/SimulationComponent/VehicleTest.cs +++ b/VectoCoreTest/Models/SimulationComponent/VehicleTest.cs @@ -1,4 +1,20 @@ -using System; +/* +* Copyright 2015 European Union +* +* Licensed under the EUPL (the "Licence"); +* You may not use this work except in compliance with the Licence. +* You may obtain a copy of the Licence at: +* +* http://ec.europa.eu/idabc/eupl5 +* +* Unless required by applicable law or agreed to in writing, software +* distributed under the Licence is distributed on an "AS IS" basis, +* WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. +* See the Licence for the specific language governing permissions and +* limitations under the Licence. +*/ + +using System; using System.IO; using Microsoft.VisualStudio.TestTools.UnitTesting; using TUGraz.VectoCore.FileIO.Reader.DataObjectAdaper; diff --git a/VectoCoreTest/Models/SimulationComponent/WheelsTest.cs b/VectoCoreTest/Models/SimulationComponent/WheelsTest.cs index b5176c1f8835c2785d19aeb799aa20564373f3d8..fd6ba324fcf9f98c4e7c8301d8ab4b910e63e566 100644 --- a/VectoCoreTest/Models/SimulationComponent/WheelsTest.cs +++ b/VectoCoreTest/Models/SimulationComponent/WheelsTest.cs @@ -1,4 +1,20 @@ -using System; +/* +* Copyright 2015 European Union +* +* Licensed under the EUPL (the "Licence"); +* You may not use this work except in compliance with the Licence. +* You may obtain a copy of the Licence at: +* +* http://ec.europa.eu/idabc/eupl5 +* +* Unless required by applicable law or agreed to in writing, software +* distributed under the Licence is distributed on an "AS IS" basis, +* WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. +* See the Licence for the specific language governing permissions and +* limitations under the Licence. +*/ + +using System; using Microsoft.VisualStudio.TestTools.UnitTesting; using TUGraz.VectoCore.FileIO.Reader.Impl; using TUGraz.VectoCore.Models.Simulation.Impl; diff --git a/VectoCoreTest/Models/SimulationComponentData/AccelerationCurveTest.cs b/VectoCoreTest/Models/SimulationComponentData/AccelerationCurveTest.cs index 1d10e2d5fb3e73d2b4083559dea63212dbd0581b..738dc129359ea15588de1f11beab191f40883230 100644 --- a/VectoCoreTest/Models/SimulationComponentData/AccelerationCurveTest.cs +++ b/VectoCoreTest/Models/SimulationComponentData/AccelerationCurveTest.cs @@ -1,4 +1,20 @@ -using Microsoft.VisualStudio.TestTools.UnitTesting; +/* +* Copyright 2015 European Union +* +* Licensed under the EUPL (the "Licence"); +* You may not use this work except in compliance with the Licence. +* You may obtain a copy of the Licence at: +* +* http://ec.europa.eu/idabc/eupl5 +* +* Unless required by applicable law or agreed to in writing, software +* distributed under the Licence is distributed on an "AS IS" basis, +* WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. +* See the Licence for the specific language governing permissions and +* limitations under the Licence. +*/ + +using Microsoft.VisualStudio.TestTools.UnitTesting; using TUGraz.VectoCore.Models.SimulationComponent.Data; using TUGraz.VectoCore.Utils; diff --git a/VectoCoreTest/Models/SimulationComponentData/AuxiliaryTypeHelperTest.cs b/VectoCoreTest/Models/SimulationComponentData/AuxiliaryTypeHelperTest.cs index c884d08b048be15a5c5e1929a54368a9bbe07d2c..421042b1d47e5dcb2bad2a1757d67e69c4f06cec 100644 --- a/VectoCoreTest/Models/SimulationComponentData/AuxiliaryTypeHelperTest.cs +++ b/VectoCoreTest/Models/SimulationComponentData/AuxiliaryTypeHelperTest.cs @@ -1,4 +1,20 @@ -using System; +/* +* Copyright 2015 European Union +* +* Licensed under the EUPL (the "Licence"); +* You may not use this work except in compliance with the Licence. +* You may obtain a copy of the Licence at: +* +* http://ec.europa.eu/idabc/eupl5 +* +* Unless required by applicable law or agreed to in writing, software +* distributed under the Licence is distributed on an "AS IS" basis, +* WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. +* See the Licence for the specific language governing permissions and +* limitations under the Licence. +*/ + +using System; using Microsoft.VisualStudio.TestTools.UnitTesting; using TUGraz.VectoCore.Configuration; using TUGraz.VectoCore.Models.SimulationComponent.Data; diff --git a/VectoCoreTest/Models/SimulationComponentData/DistanceCycleDataTest.cs b/VectoCoreTest/Models/SimulationComponentData/DistanceCycleDataTest.cs index 75838e87550c0bcf8896d5e8d41e63c32fab75db..1c5d33d2957fadeeed7f1ea42c3faee3e1baec41 100644 --- a/VectoCoreTest/Models/SimulationComponentData/DistanceCycleDataTest.cs +++ b/VectoCoreTest/Models/SimulationComponentData/DistanceCycleDataTest.cs @@ -1,4 +1,20 @@ -using System.Linq; +/* +* Copyright 2015 European Union +* +* Licensed under the EUPL (the "Licence"); +* You may not use this work except in compliance with the Licence. +* You may obtain a copy of the Licence at: +* +* http://ec.europa.eu/idabc/eupl5 +* +* Unless required by applicable law or agreed to in writing, software +* distributed under the Licence is distributed on an "AS IS" basis, +* WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. +* See the Licence for the specific language governing permissions and +* limitations under the Licence. +*/ + +using System.Linq; using Microsoft.VisualStudio.TestTools.UnitTesting; using TUGraz.VectoCore.FileIO.Reader; using TUGraz.VectoCore.FileIO.Reader.Impl; diff --git a/VectoCoreTest/Models/SimulationComponentData/FuelConsumptionMapTest.cs b/VectoCoreTest/Models/SimulationComponentData/FuelConsumptionMapTest.cs index d0b1e4011d67a6e16583682a3031cc8d2ca219e6..e516b64af542aa22589c9de074f48810e1be3db4 100644 --- a/VectoCoreTest/Models/SimulationComponentData/FuelConsumptionMapTest.cs +++ b/VectoCoreTest/Models/SimulationComponentData/FuelConsumptionMapTest.cs @@ -1,4 +1,20 @@ -using System.Globalization; +/* +* Copyright 2015 European Union +* +* Licensed under the EUPL (the "Licence"); +* You may not use this work except in compliance with the Licence. +* You may obtain a copy of the Licence at: +* +* http://ec.europa.eu/idabc/eupl5 +* +* Unless required by applicable law or agreed to in writing, software +* distributed under the Licence is distributed on an "AS IS" basis, +* WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. +* See the Licence for the specific language governing permissions and +* limitations under the Licence. +*/ + +using System.Globalization; using System.IO; using System.Linq; using Microsoft.VisualStudio.TestTools.UnitTesting; diff --git a/VectoCoreTest/Models/SimulationComponentData/FullLoadCurveTest.cs b/VectoCoreTest/Models/SimulationComponentData/FullLoadCurveTest.cs index 73153088c02fbbe0d40ed64e5e9d600f8f9e912d..c0d361c40e9840ec26012f0126903023daa03f3a 100644 --- a/VectoCoreTest/Models/SimulationComponentData/FullLoadCurveTest.cs +++ b/VectoCoreTest/Models/SimulationComponentData/FullLoadCurveTest.cs @@ -1,4 +1,20 @@ -using Microsoft.VisualStudio.TestTools.UnitTesting; +/* +* Copyright 2015 European Union +* +* Licensed under the EUPL (the "Licence"); +* You may not use this work except in compliance with the Licence. +* You may obtain a copy of the Licence at: +* +* http://ec.europa.eu/idabc/eupl5 +* +* Unless required by applicable law or agreed to in writing, software +* distributed under the Licence is distributed on an "AS IS" basis, +* WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. +* See the Licence for the specific language governing permissions and +* limitations under the Licence. +*/ + +using Microsoft.VisualStudio.TestTools.UnitTesting; using TUGraz.VectoCore.Exceptions; using TUGraz.VectoCore.Models.SimulationComponent.Data; using TUGraz.VectoCore.Models.SimulationComponent.Data.Engine; diff --git a/VectoCoreTest/Models/SimulationComponentData/GearboxDataTest.cs b/VectoCoreTest/Models/SimulationComponentData/GearboxDataTest.cs index 2f57abf5acf63db8bc7691aebb028633ead2c177..e3a2ae92700debe606ad71c9a07f03185eb59d36 100644 --- a/VectoCoreTest/Models/SimulationComponentData/GearboxDataTest.cs +++ b/VectoCoreTest/Models/SimulationComponentData/GearboxDataTest.cs @@ -1,4 +1,20 @@ -using System; +/* +* Copyright 2015 European Union +* +* Licensed under the EUPL (the "Licence"); +* You may not use this work except in compliance with the Licence. +* You may obtain a copy of the Licence at: +* +* http://ec.europa.eu/idabc/eupl5 +* +* Unless required by applicable law or agreed to in writing, software +* distributed under the Licence is distributed on an "AS IS" basis, +* WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. +* See the Licence for the specific language governing permissions and +* limitations under the Licence. +*/ + +using System; using System.Globalization; using Microsoft.VisualStudio.TestTools.UnitTesting; using TUGraz.VectoCore.FileIO.Reader.Impl; diff --git a/VectoCoreTest/Models/SimulationComponentData/VehicleDataTest.cs b/VectoCoreTest/Models/SimulationComponentData/VehicleDataTest.cs index d9e8867b52fa2219ba55ec0256eb4334d4d9532b..946b1a513e7c9e36c93167354534441676a51f6b 100644 --- a/VectoCoreTest/Models/SimulationComponentData/VehicleDataTest.cs +++ b/VectoCoreTest/Models/SimulationComponentData/VehicleDataTest.cs @@ -1,4 +1,20 @@ -using Microsoft.VisualStudio.TestTools.UnitTesting; +/* +* Copyright 2015 European Union +* +* Licensed under the EUPL (the "Licence"); +* You may not use this work except in compliance with the Licence. +* You may obtain a copy of the Licence at: +* +* http://ec.europa.eu/idabc/eupl5 +* +* Unless required by applicable law or agreed to in writing, software +* distributed under the Licence is distributed on an "AS IS" basis, +* WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. +* See the Licence for the specific language governing permissions and +* limitations under the Licence. +*/ + +using Microsoft.VisualStudio.TestTools.UnitTesting; using TUGraz.VectoCore.Models.Declaration; namespace TUGraz.VectoCore.Tests.Models.SimulationComponentData diff --git a/VectoCoreTest/Properties/AssemblyInfo.cs b/VectoCoreTest/Properties/AssemblyInfo.cs index 38abdb56e451d0b5ed94e2072f2dc0dfa3d4c3a0..cfd32373ca7510a83c0c09d7679b0ab7ae51348c 100644 --- a/VectoCoreTest/Properties/AssemblyInfo.cs +++ b/VectoCoreTest/Properties/AssemblyInfo.cs @@ -1,4 +1,20 @@ -using System.Reflection; +/* +* Copyright 2015 European Union +* +* Licensed under the EUPL (the "Licence"); +* You may not use this work except in compliance with the Licence. +* You may obtain a copy of the Licence at: +* +* http://ec.europa.eu/idabc/eupl5 +* +* Unless required by applicable law or agreed to in writing, software +* distributed under the Licence is distributed on an "AS IS" basis, +* WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. +* See the Licence for the specific language governing permissions and +* limitations under the Licence. +*/ + +using System.Reflection; using System.Runtime.InteropServices; // General Information about an assembly is controlled through the following diff --git a/VectoCoreTest/Reports/SumWriterTest.cs b/VectoCoreTest/Reports/SumWriterTest.cs index 6c5e7dde3fcec03f197e4e317e4c3803b9dd0369..0d3cf545223a4478fd765501f38f268836aded74 100644 --- a/VectoCoreTest/Reports/SumWriterTest.cs +++ b/VectoCoreTest/Reports/SumWriterTest.cs @@ -1,4 +1,20 @@ -using System.Linq; +/* +* Copyright 2015 European Union +* +* Licensed under the EUPL (the "Licence"); +* You may not use this work except in compliance with the Licence. +* You may obtain a copy of the Licence at: +* +* http://ec.europa.eu/idabc/eupl5 +* +* Unless required by applicable law or agreed to in writing, software +* distributed under the Licence is distributed on an "AS IS" basis, +* WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. +* See the Licence for the specific language governing permissions and +* limitations under the Licence. +*/ + +using System.Linq; using Microsoft.VisualStudio.TestTools.UnitTesting; using TUGraz.VectoCore.Models.Simulation.Data; using TUGraz.VectoCore.Models.Simulation.Impl; diff --git a/VectoCoreTest/Utils/AssertHelper.cs b/VectoCoreTest/Utils/AssertHelper.cs index 2f9537c17596a2667c90b9137856f109dcab537b..48923957ae5ae2879372ac60a12a01e43c076ca4 100644 --- a/VectoCoreTest/Utils/AssertHelper.cs +++ b/VectoCoreTest/Utils/AssertHelper.cs @@ -1,4 +1,20 @@ -using System; +/* +* Copyright 2015 European Union +* +* Licensed under the EUPL (the "Licence"); +* You may not use this work except in compliance with the Licence. +* You may obtain a copy of the Licence at: +* +* http://ec.europa.eu/idabc/eupl5 +* +* Unless required by applicable law or agreed to in writing, software +* distributed under the Licence is distributed on an "AS IS" basis, +* WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. +* See the Licence for the specific language governing permissions and +* limitations under the Licence. +*/ + +using System; using System.Diagnostics; using System.Globalization; using Microsoft.VisualStudio.TestTools.UnitTesting; diff --git a/VectoCoreTest/Utils/DelauneyMapTest.cs b/VectoCoreTest/Utils/DelauneyMapTest.cs index 92a7c4e08832a84cb5207a94379182da216306d4..09b501778c2d7c253c6d1028832c89cd9af4f67e 100644 --- a/VectoCoreTest/Utils/DelauneyMapTest.cs +++ b/VectoCoreTest/Utils/DelauneyMapTest.cs @@ -1,4 +1,20 @@ -using System; +/* +* Copyright 2015 European Union +* +* Licensed under the EUPL (the "Licence"); +* You may not use this work except in compliance with the Licence. +* You may obtain a copy of the Licence at: +* +* http://ec.europa.eu/idabc/eupl5 +* +* Unless required by applicable law or agreed to in writing, software +* distributed under the Licence is distributed on an "AS IS" basis, +* WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. +* See the Licence for the specific language governing permissions and +* limitations under the Licence. +*/ + +using System; using Microsoft.VisualStudio.TestTools.UnitTesting; using TUGraz.VectoCore.Exceptions; using TUGraz.VectoCore.Utils; diff --git a/VectoCoreTest/Utils/DoubleExtensionMethodTest.cs b/VectoCoreTest/Utils/DoubleExtensionMethodTest.cs index 40499689f7d9d80d83ad14351143c8bcd7a77140..c99ac801d3b0c33aa13dba47b88247312a59ac74 100644 --- a/VectoCoreTest/Utils/DoubleExtensionMethodTest.cs +++ b/VectoCoreTest/Utils/DoubleExtensionMethodTest.cs @@ -1,3 +1,19 @@ +/* +* Copyright 2015 European Union +* +* Licensed under the EUPL (the "Licence"); +* You may not use this work except in compliance with the Licence. +* You may obtain a copy of the Licence at: +* +* http://ec.europa.eu/idabc/eupl5 +* +* Unless required by applicable law or agreed to in writing, software +* distributed under the Licence is distributed on an "AS IS" basis, +* WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. +* See the Licence for the specific language governing permissions and +* limitations under the Licence. +*/ + using System; using Microsoft.VisualStudio.TestTools.UnitTesting; using TUGraz.VectoCore.Utils; diff --git a/VectoCoreTest/Utils/GraphWriter.cs b/VectoCoreTest/Utils/GraphWriter.cs index 4c62b9881a821257d457bbd8fe5f7b4050de78b4..897632c52ef861a9f0cf46a61fce86ea68dfb356 100644 --- a/VectoCoreTest/Utils/GraphWriter.cs +++ b/VectoCoreTest/Utils/GraphWriter.cs @@ -1,4 +1,20 @@ -using System; +/* +* Copyright 2015 European Union +* +* Licensed under the EUPL (the "Licence"); +* You may not use this work except in compliance with the Licence. +* You may obtain a copy of the Licence at: +* +* http://ec.europa.eu/idabc/eupl5 +* +* Unless required by applicable law or agreed to in writing, software +* distributed under the Licence is distributed on an "AS IS" basis, +* WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. +* See the Licence for the specific language governing permissions and +* limitations under the Licence. +*/ + +using System; using System.Collections.Generic; using System.Collections.Specialized; using System.Data; diff --git a/VectoCoreTest/Utils/MockAuxiliaryDemand.cs b/VectoCoreTest/Utils/MockAuxiliaryDemand.cs index be93826a2034e534091f1c6f552a83cbfa1686b7..bf863746cc8cde1c88839e03f9b8a0248cbc4710 100644 --- a/VectoCoreTest/Utils/MockAuxiliaryDemand.cs +++ b/VectoCoreTest/Utils/MockAuxiliaryDemand.cs @@ -1,3 +1,19 @@ +/* +* Copyright 2015 European Union +* +* Licensed under the EUPL (the "Licence"); +* You may not use this work except in compliance with the Licence. +* You may obtain a copy of the Licence at: +* +* http://ec.europa.eu/idabc/eupl5 +* +* Unless required by applicable law or agreed to in writing, software +* distributed under the Licence is distributed on an "AS IS" basis, +* WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. +* See the Licence for the specific language governing permissions and +* limitations under the Licence. +*/ + using System; using System.Collections.Generic; using System.Linq; diff --git a/VectoCoreTest/Utils/MockDriver.cs b/VectoCoreTest/Utils/MockDriver.cs index 10183c6a3048401df165403935c958208235a784..fa8b0494818456d45da82a29d2451887d7e1dd2b 100644 --- a/VectoCoreTest/Utils/MockDriver.cs +++ b/VectoCoreTest/Utils/MockDriver.cs @@ -1,4 +1,20 @@ -using System; +/* +* Copyright 2015 European Union +* +* Licensed under the EUPL (the "Licence"); +* You may not use this work except in compliance with the Licence. +* You may obtain a copy of the Licence at: +* +* http://ec.europa.eu/idabc/eupl5 +* +* Unless required by applicable law or agreed to in writing, software +* distributed under the Licence is distributed on an "AS IS" basis, +* WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. +* See the Licence for the specific language governing permissions and +* limitations under the Licence. +*/ + +using System; using System.Diagnostics; using TUGraz.VectoCore.Models.Connector.Ports; using TUGraz.VectoCore.Models.Connector.Ports.Impl; diff --git a/VectoCoreTest/Utils/MockGearbox.cs b/VectoCoreTest/Utils/MockGearbox.cs index ed9e7f6f2c7152586a5ff83dc5de7720f4c15961..afbbf93446ab6518403ef291f355996baaa83640 100644 --- a/VectoCoreTest/Utils/MockGearbox.cs +++ b/VectoCoreTest/Utils/MockGearbox.cs @@ -1,4 +1,20 @@ -using System; +/* +* Copyright 2015 European Union +* +* Licensed under the EUPL (the "Licence"); +* You may not use this work except in compliance with the Licence. +* You may obtain a copy of the Licence at: +* +* http://ec.europa.eu/idabc/eupl5 +* +* Unless required by applicable law or agreed to in writing, software +* distributed under the Licence is distributed on an "AS IS" basis, +* WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. +* See the Licence for the specific language governing permissions and +* limitations under the Licence. +*/ + +using System; using TUGraz.VectoCore.Models.Connector.Ports; using TUGraz.VectoCore.Models.Simulation; using TUGraz.VectoCore.Models.Simulation.Data; diff --git a/VectoCoreTest/Utils/MockModalDataWriter.cs b/VectoCoreTest/Utils/MockModalDataWriter.cs index 9e42f743662ea1b748dc648a5d44e95aae05aed6..ce1c9659bcfa3f6457f4fcc9d4f79724fb1d7ae4 100644 --- a/VectoCoreTest/Utils/MockModalDataWriter.cs +++ b/VectoCoreTest/Utils/MockModalDataWriter.cs @@ -1,3 +1,19 @@ +/* +* Copyright 2015 European Union +* +* Licensed under the EUPL (the "Licence"); +* You may not use this work except in compliance with the Licence. +* You may obtain a copy of the Licence at: +* +* http://ec.europa.eu/idabc/eupl5 +* +* Unless required by applicable law or agreed to in writing, software +* distributed under the Licence is distributed on an "AS IS" basis, +* WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. +* See the Licence for the specific language governing permissions and +* limitations under the Licence. +*/ + using System.Collections.Generic; using System.Data; using System.Linq; diff --git a/VectoCoreTest/Utils/MockPorts.cs b/VectoCoreTest/Utils/MockPorts.cs index fc73e9a0deea6dd11b46c2c9bce65dfce01929ea..1fc0421ecb8fb044a394f78f961f480bfb8f17db 100644 --- a/VectoCoreTest/Utils/MockPorts.cs +++ b/VectoCoreTest/Utils/MockPorts.cs @@ -1,3 +1,19 @@ +/* +* Copyright 2015 European Union +* +* Licensed under the EUPL (the "Licence"); +* You may not use this work except in compliance with the Licence. +* You may obtain a copy of the Licence at: +* +* http://ec.europa.eu/idabc/eupl5 +* +* Unless required by applicable law or agreed to in writing, software +* distributed under the Licence is distributed on an "AS IS" basis, +* WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. +* See the Licence for the specific language governing permissions and +* limitations under the Licence. +*/ + using System; using System.Diagnostics; using NLog; diff --git a/VectoCoreTest/Utils/MockVehicle.cs b/VectoCoreTest/Utils/MockVehicle.cs index c30b292f07de0445bad895ba618f18cef7b2da19..cf2201c08b23adbcd3b89aa41001a46af2a047f9 100644 --- a/VectoCoreTest/Utils/MockVehicle.cs +++ b/VectoCoreTest/Utils/MockVehicle.cs @@ -1,4 +1,20 @@ -using System; +/* +* Copyright 2015 European Union +* +* Licensed under the EUPL (the "Licence"); +* You may not use this work except in compliance with the Licence. +* You may obtain a copy of the Licence at: +* +* http://ec.europa.eu/idabc/eupl5 +* +* Unless required by applicable law or agreed to in writing, software +* distributed under the Licence is distributed on an "AS IS" basis, +* WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. +* See the Licence for the specific language governing permissions and +* limitations under the Licence. +*/ + +using System; using TUGraz.VectoCore.Models.Connector.Ports; using TUGraz.VectoCore.Models.Connector.Ports.Impl; using TUGraz.VectoCore.Models.Simulation; diff --git a/VectoCoreTest/Utils/Port.cs b/VectoCoreTest/Utils/Port.cs index 1c1b77e620185f9c13f21a4238735ad9f4ce59b2..0df260b50048b3c2b95af2e480664da0afeb6428 100644 --- a/VectoCoreTest/Utils/Port.cs +++ b/VectoCoreTest/Utils/Port.cs @@ -1,3 +1,19 @@ +/* +* Copyright 2015 European Union +* +* Licensed under the EUPL (the "Licence"); +* You may not use this work except in compliance with the Licence. +* You may obtain a copy of the Licence at: +* +* http://ec.europa.eu/idabc/eupl5 +* +* Unless required by applicable law or agreed to in writing, software +* distributed under the Licence is distributed on an "AS IS" basis, +* WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. +* See the Licence for the specific language governing permissions and +* limitations under the Licence. +*/ + using TUGraz.VectoCore.Models.Connector.Ports; using TUGraz.VectoCore.Models.SimulationComponent; diff --git a/VectoCoreTest/Utils/ResultFileHelper.cs b/VectoCoreTest/Utils/ResultFileHelper.cs index 0733d9f3959f01c6ccf4df31e5ea039e2c7a2b20..62b68d35ad97f388f5c8295acd41bcca98857250 100644 --- a/VectoCoreTest/Utils/ResultFileHelper.cs +++ b/VectoCoreTest/Utils/ResultFileHelper.cs @@ -1,3 +1,19 @@ +/* +* Copyright 2015 European Union +* +* Licensed under the EUPL (the "Licence"); +* You may not use this work except in compliance with the Licence. +* You may obtain a copy of the Licence at: +* +* http://ec.europa.eu/idabc/eupl5 +* +* Unless required by applicable law or agreed to in writing, software +* distributed under the Licence is distributed on an "AS IS" basis, +* WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. +* See the Licence for the specific language governing permissions and +* limitations under the Licence. +*/ + using System.Collections.Generic; using System.Data; using System.IO; diff --git a/VectoCoreTest/Utils/SITest.cs b/VectoCoreTest/Utils/SITest.cs index c25adf4e0a40a09f81daee24e47f855c8173ec0c..df1616f1568747e2851197c6181cf38d009c2fa7 100644 --- a/VectoCoreTest/Utils/SITest.cs +++ b/VectoCoreTest/Utils/SITest.cs @@ -1,4 +1,20 @@ -using System; +/* +* Copyright 2015 European Union +* +* Licensed under the EUPL (the "Licence"); +* You may not use this work except in compliance with the Licence. +* You may obtain a copy of the Licence at: +* +* http://ec.europa.eu/idabc/eupl5 +* +* Unless required by applicable law or agreed to in writing, software +* distributed under the Licence is distributed on an "AS IS" basis, +* WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. +* See the Licence for the specific language governing permissions and +* limitations under the Licence. +*/ + +using System; using Microsoft.VisualStudio.TestTools.UnitTesting; using TUGraz.VectoCore.Exceptions; using TUGraz.VectoCore.Utils; diff --git a/VectoCoreTest/Utils/VectoMathTest.cs b/VectoCoreTest/Utils/VectoMathTest.cs index d607badb608e2d9ed69f628e73c79d1c202774ae..b474e8e91ae81224568a8dd84b3e698b097e976e 100644 --- a/VectoCoreTest/Utils/VectoMathTest.cs +++ b/VectoCoreTest/Utils/VectoMathTest.cs @@ -1,3 +1,19 @@ +/* +* Copyright 2015 European Union +* +* Licensed under the EUPL (the "Licence"); +* You may not use this work except in compliance with the Licence. +* You may obtain a copy of the Licence at: +* +* http://ec.europa.eu/idabc/eupl5 +* +* Unless required by applicable law or agreed to in writing, software +* distributed under the Licence is distributed on an "AS IS" basis, +* WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. +* See the Licence for the specific language governing permissions and +* limitations under the Licence. +*/ + using Microsoft.VisualStudio.TestTools.UnitTesting; using TUGraz.VectoCore.Utils;