Free cookie consent management tool by TermsFeed Policy Generator

source: branches/New Persistence Exploration/Persistence/Persistence/Interfaces/IDecomposer.cs @ 1360

Last change on this file since 1360 was 1360, checked in by epitzer, 15 years ago

Scrap Storable-based cloning & reorganize namespaces. (#506)

File size: 268 bytes
Line 
1using System;
2using System.Collections;
3
4namespace HeuristicLab.Persistence.Interfaces {
5
6  public interface IDecomposer {
7    bool CanDecompose(Type type);
8    IEnumerable DeCompose(object obj);
9    object Compose(IEnumerable objects, Type type);
10  }
11
12}
Note: See TracBrowser for help on using the repository browser.