Index: Application/Ringtoets/src/Application.Ringtoets/App.xaml.cs =================================================================== diff -u -r213b20e92891887167ab4b031ca4a4b6250a4c2a -r8b9903ce9a5e5b860ee8ba6719737783be7a8cab --- Application/Ringtoets/src/Application.Ringtoets/App.xaml.cs (.../App.xaml.cs) (revision 213b20e92891887167ab4b031ca4a4b6250a4c2a) +++ Application/Ringtoets/src/Application.Ringtoets/App.xaml.cs (.../App.xaml.cs) (revision 8b9903ce9a5e5b860ee8ba6719737783be7a8cab) @@ -142,6 +142,7 @@ applicationCore.AddPlugin(new RingtoetsApplicationPlugin()); applicationCore.AddPlugin(new PipingApplicationPlugin()); + applicationCore.AddPlugin(new GrassCoverErosionInwardsApplicationPlugin()); var settings = new GuiCoreSettings { Index: Ringtoets/GrassCoverErosionInwards/src/Ringtoets.GrassCoverErosionInwards.Plugin/GrassCoverErosionInwardsApplicationPlugin.cs =================================================================== diff -u --- Ringtoets/GrassCoverErosionInwards/src/Ringtoets.GrassCoverErosionInwards.Plugin/GrassCoverErosionInwardsApplicationPlugin.cs (revision 0) +++ Ringtoets/GrassCoverErosionInwards/src/Ringtoets.GrassCoverErosionInwards.Plugin/GrassCoverErosionInwardsApplicationPlugin.cs (revision 8b9903ce9a5e5b860ee8ba6719737783be7a8cab) @@ -0,0 +1,39 @@ +// Copyright (C) Stichting Deltares 2016. All rights reserved. +// +// This file is part of Ringtoets. +// +// Ringtoets is free software: you can redistribute it and/or modify +// it under the terms of the GNU General Public License as published by +// the Free Software Foundation, either version 3 of the License, or +// (at your option) any later version. +// +// This program is distributed in the hope that it will be useful, +// but WITHOUT ANY WARRANTY; without even the implied warranty of +// MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the +// GNU General Public License for more details. +// +// You should have received a copy of the GNU General Public License +// along with this program. If not, see . +// +// All names, logos, and references to "Deltares" are registered trademarks of +// Stichting Deltares and remain full property of Stichting Deltares at all times. +// All rights reserved. + +using System.Collections.Generic; +using Core.Common.Base.IO; +using Core.Common.Base.Plugin; +using Ringtoets.GrassCoverErosionInwards.Plugin.FileImporter; + +namespace Ringtoets.GrassCoverErosionInwards.Plugin +{ + /// + /// The application plugin for the GEKB failure mechanism. + /// + public class GrassCoverErosionInwardsApplicationPlugin : ApplicationPlugin + { + public override IEnumerable GetFileImporters() + { + yield return new DikeProfilesImporter(); + } + } +} \ No newline at end of file Index: Ringtoets/GrassCoverErosionInwards/src/Ringtoets.GrassCoverErosionInwards.Plugin/GrassCoverErosionInwardsGuiPlugin.cs =================================================================== diff -u -rc9396d0af18873fda14c7e486decbfca7d4e8b21 -r8b9903ce9a5e5b860ee8ba6719737783be7a8cab --- Ringtoets/GrassCoverErosionInwards/src/Ringtoets.GrassCoverErosionInwards.Plugin/GrassCoverErosionInwardsGuiPlugin.cs (.../GrassCoverErosionInwardsGuiPlugin.cs) (revision c9396d0af18873fda14c7e486decbfca7d4e8b21) +++ Ringtoets/GrassCoverErosionInwards/src/Ringtoets.GrassCoverErosionInwards.Plugin/GrassCoverErosionInwardsGuiPlugin.cs (.../GrassCoverErosionInwardsGuiPlugin.cs) (revision 8b9903ce9a5e5b860ee8ba6719737783be7a8cab) @@ -19,7 +19,6 @@ // Stichting Deltares and remain full property of Stichting Deltares at all times. // All rights reserved. -using System; using System.Collections; using System.Collections.Generic; using System.Drawing; Index: Ringtoets/GrassCoverErosionInwards/src/Ringtoets.GrassCoverErosionInwards.Plugin/Ringtoets.GrassCoverErosionInwards.Plugin.csproj =================================================================== diff -u -r87fcb2097e3a58e611c0de6913cb48851006f7af -r8b9903ce9a5e5b860ee8ba6719737783be7a8cab --- Ringtoets/GrassCoverErosionInwards/src/Ringtoets.GrassCoverErosionInwards.Plugin/Ringtoets.GrassCoverErosionInwards.Plugin.csproj (.../Ringtoets.GrassCoverErosionInwards.Plugin.csproj) (revision 87fcb2097e3a58e611c0de6913cb48851006f7af) +++ Ringtoets/GrassCoverErosionInwards/src/Ringtoets.GrassCoverErosionInwards.Plugin/Ringtoets.GrassCoverErosionInwards.Plugin.csproj (.../Ringtoets.GrassCoverErosionInwards.Plugin.csproj) (revision 8b9903ce9a5e5b860ee8ba6719737783be7a8cab) @@ -46,6 +46,7 @@ Properties\GlobalAssembly.cs +