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