Mercurial > hg > ucis.core
view Pml/RW/IPmlRW.cs @ 58:fd63c453ff65
Improved Windows USB enumeration classes
author | Ivo Smits <Ivo@UCIS.nl> |
---|---|
date | Wed, 09 Oct 2013 20:54:15 +0200 |
parents | 3ab940a0c7a0 |
children |
line wrap: on
line source
???namespace UCIS.Pml { public interface IPmlReader { PmlElement ReadMessage(); } public interface IPmlWriter { void WriteMessage(PmlElement Message); } public interface IPmlRW : IPmlReader, IPmlWriter { } }