Revision: | 79 |
Committed: | Thu Jul 15 21:50:56 2010 UTC (12 years, 8 months ago) by william |
File size: | 317 byte(s) |
Log Message: | create and implement interfaces for all core classes (for type casting) |
# | User | Rev | Content |
---|---|---|---|
1 | william | 79 | using System; |
2 | using System.Collections.Generic; | ||
3 | using System.Linq; | ||
4 | using System.Text; | ||
5 | using gr2lib.core.coretypes.implementation; | ||
6 | |||
7 | namespace gr2lib.core.interfaces | ||
8 | { | ||
9 | public interface IMIPLevel : INativePointer | ||
10 | { | ||
11 | int Stride { get; set; } | ||
12 | PixelList Pixels { get; set; } | ||
13 | } | ||
14 | } |