Changeset 8331 for branches/ScatterSearch (trunk integration)/HeuristicLab.Problems.Instances/3.3/ProblemInstanceProvider.cs
- Timestamp:
- 07/26/12 09:51:13 (12 years ago)
- Location:
- branches/ScatterSearch (trunk integration)
- Files:
-
- 2 edited
Legend:
- Unmodified
- Added
- Removed
-
branches/ScatterSearch (trunk integration)
- Property svn:ignore
-
old new 21 21 protoc.exe 22 22 _ReSharper.HeuristicLab 3.3 Tests 23 Google.ProtocolBuffers-2.4.1.473.dll
-
- Property svn:mergeinfo changed
- Property svn:ignore
-
branches/ScatterSearch (trunk integration)/HeuristicLab.Problems.Instances/3.3/ProblemInstanceProvider.cs
r8086 r8331 33 33 34 34 public abstract TData LoadData(IDataDescriptor descriptor); 35 public abstract TData LoadData(string path);36 35 37 public abstract void SaveData(TData instance, string path); 36 public virtual bool CanImportData { 37 get { return false; } 38 } 39 public virtual TData ImportData(string path) { 40 throw new NotSupportedException(); 41 } 42 43 public virtual bool CanExportData { 44 get { return false; } 45 } 46 public virtual void ExportData(TData instance, string path) { 47 throw new NotSupportedException(); 48 } 38 49 } 39 50 }
Note: See TracChangeset
for help on using the changeset viewer.