Changeset 7552
- Timestamp:
- 03/05/12 20:38:36 (13 years ago)
- Location:
- branches/GeneralizedQAP/HeuristicLab.Problems.Instances/3.3
- Files:
-
- 1 deleted
- 2 edited
Legend:
- Unmodified
- Added
- Removed
-
branches/GeneralizedQAP/HeuristicLab.Problems.Instances/3.3/HeuristicLab.Problems.Instances-3.3.csproj
r7548 r7552 51 51 </ItemGroup> 52 52 <ItemGroup> 53 <None Include="ClassDiagram1.cd" />54 53 <None Include="Plugin.cs.frame" /> 55 54 <Compile Include="IExportable.cs" /> -
branches/GeneralizedQAP/HeuristicLab.Problems.Instances/3.3/IExportable.cs
r7538 r7552 21 21 22 22 namespace HeuristicLab.Problems.Instances { 23 public interface IExportable<T Instance> {24 void ExportTo(T Instance instance);23 public interface IExportable<TData> { 24 void ExportTo(TData data); 25 25 } 26 26 }
Note: See TracChangeset
for help on using the changeset viewer.