Changeset 2520 for trunk/sources/HeuristicLab.SequentialEngine
- Timestamp:
- 11/23/09 11:08:34 (15 years ago)
- Location:
- trunk/sources/HeuristicLab.SequentialEngine/3.3
- Files:
-
- 4 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/sources/HeuristicLab.SequentialEngine/3.3/HeuristicLab.SequentialEngine-3.3.csproj
r1853 r2520 98 98 </ItemGroup> 99 99 <ItemGroup> 100 <ProjectReference Include="..\..\HeuristicLab.Core.Views\3.3\HeuristicLab.Core.Views-3.3.csproj"> 101 <Project>{E226881D-315F-423D-B419-A766FE0D8685}</Project> 102 <Name>HeuristicLab.Core.Views-3.3</Name> 103 </ProjectReference> 100 104 <ProjectReference Include="..\..\HeuristicLab.Core\3.3\HeuristicLab.Core-3.3.csproj"> 101 105 <Project>{C36BD924-A541-4A00-AFA8-41701378DDC5}</Project> 102 106 <Name>HeuristicLab.Core-3.3</Name> 107 </ProjectReference> 108 <ProjectReference Include="..\..\HeuristicLab.MainForm.WindowsForms\3.2\HeuristicLab.MainForm.WindowsForms-3.2.csproj"> 109 <Project>{AB687BBE-1BFE-476B-906D-44237135431D}</Project> 110 <Name>HeuristicLab.MainForm.WindowsForms-3.2</Name> 111 </ProjectReference> 112 <ProjectReference Include="..\..\HeuristicLab.MainForm\3.2\HeuristicLab.MainForm-3.2.csproj"> 113 <Project>{3BD61258-31DA-4B09-89C0-4F71FEF5F05A}</Project> 114 <Name>HeuristicLab.MainForm-3.2</Name> 103 115 </ProjectReference> 104 116 <ProjectReference Include="..\..\HeuristicLab.Persistence\3.3\HeuristicLab.Persistence-3.3.csproj"> -
trunk/sources/HeuristicLab.SequentialEngine/3.3/HeuristicLabSequentialEnginePlugin.cs
r1678 r2520 32 32 [PluginFile(Filename = "HeuristicLab.SequentialEngine-3.3.dll", Filetype = PluginFileType.Assembly)] 33 33 [Dependency(Dependency = "HeuristicLab.Core-3.3")] 34 [Dependency(Dependency = "HeuristicLab.Core.Views-3.3")] 35 [Dependency(Dependency = "HeuristicLab.MainForm-3.2")] 36 [Dependency(Dependency = "HeuristicLab.MainForm.WindowsForms-3.2")] 34 37 public class HeuristicLabSequentialEnginePlugin : PluginBase { 35 38 } -
trunk/sources/HeuristicLab.SequentialEngine/3.3/SequentialEngine.cs
r1853 r2520 35 35 public class SequentialEngine : EngineBase, IEditable { 36 36 private IOperator currentOperator; 37 38 /// <summary>39 /// Creates a new instance of <see cref="SequentialEngineEditor"/>.40 /// </summary>41 /// <returns>The created view as <see cref="SequentialEngineEditor"/>.</returns>42 public override IView CreateView() {43 return new SequentialEngineEditor(this);44 }45 46 /// <summary>47 /// Creates a new instance of <see cref="SequentialEngineEditor"/>.48 /// </summary>49 /// <returns>The created editor as <see cref="SequentialEngineEditor"/>.</returns>50 public virtual IEditor CreateEditor() {51 return new SequentialEngineEditor(this);52 }53 37 54 38 /// <summary> -
trunk/sources/HeuristicLab.SequentialEngine/3.3/SequentialEngineEditor.cs
r1530 r2520 28 28 using System.Windows.Forms; 29 29 using HeuristicLab.Core; 30 using HeuristicLab.Core.Views; 31 using HeuristicLab.MainForm; 30 32 31 33 namespace HeuristicLab.SequentialEngine { … … 33 35 /// Visual representation of a <see cref="SequentialEngine"/>. 34 36 /// </summary> 37 [Content(typeof(SequentialEngine), true)] 35 38 public partial class SequentialEngineEditor : EngineBaseEditor { 36 39 /// <summary>
Note: See TracChangeset
for help on using the changeset viewer.