Changeset 2285 for trunk/sources/HeuristicLab.Modeling.Database
- Timestamp:
- 08/13/09 17:28:07 (15 years ago)
- Location:
- trunk/sources/HeuristicLab.Modeling.Database/3.2
- Files:
-
- 3 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/sources/HeuristicLab.Modeling.Database/3.2/HeuristicLab.Modeling.Database-3.2.csproj
r2223 r2285 97 97 </ItemGroup> 98 98 <ItemGroup> 99 <ProjectReference Include="..\..\HeuristicLab.Core\3.2\HeuristicLab.Core-3.2.csproj"> 100 <Project>{F43B59AB-2B8C-4570-BC1E-15592086517C}</Project> 101 <Name>HeuristicLab.Core-3.2</Name> 102 </ProjectReference> 99 103 <ProjectReference Include="..\..\HeuristicLab.Modeling\3.2\HeuristicLab.Modeling-3.2.csproj"> 100 104 <Project>{80F7FADA-549D-4151-8856-79B620A50DBA}</Project> -
trunk/sources/HeuristicLab.Modeling.Database/3.2/HeuristicLabModelingDatabasePlugin.cs
r2223 r2285 28 28 [ClassInfo(Name = "HeuristicLab.Modeling.Database-3.2")] 29 29 [PluginFile(Filename = "HeuristicLab.Modeling.Database-3.2.dll", Filetype = PluginFileType.Assembly)] 30 [Dependency(Dependency = "HeuristicLab.Core-3.2")] 30 31 [Dependency(Dependency = "HeuristicLab.Modeling-3.2")] 31 32 public class HeuristicLabModelingDatabasePlugin : PluginBase { -
trunk/sources/HeuristicLab.Modeling.Database/3.2/IModelingDatabase.cs
r2278 r2285 27 27 namespace HeuristicLab.Modeling.Database { 28 28 public interface IModelingDatabase { 29 void Persist(HeuristicLab.Modeling.I Model model, string algorithmName, string algorithmDescription);29 void Persist(HeuristicLab.Modeling.IAnalyzerModel model, string algorithmName, string algorithmDescription); 30 30 void Persist(HeuristicLab.Modeling.IAlgorithm algorithm); 31 31 IEnumerable<IModel> GetAllModels();
Note: See TracChangeset
for help on using the changeset viewer.