Free cookie consent management tool by TermsFeed Policy Generator

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

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

Pluginification and major refactoring. (#506)

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