ViewVC Help
View File | Revision Log | Show Annotations | Download File | View Changeset | Root Listing
root/gr2lib/trunk/gr2lib/core/interfaces/IExporterInfo.cs
Revision: 79
Committed: Thu Jul 15 21:50:56 2010 UTC (12 years, 8 months ago) by william
File size: 547 byte(s)
Log Message:
create and implement interfaces for all core classes (for type casting)

File Contents

# 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.typedefs;
6    
7     namespace gr2lib.core.interfaces
8     {
9     public interface IExporterInfo : INativePointer
10     {
11     string ExporterName { get; set; }
12     granny_int32 ExporterMajorRevision { get; set; }
13     granny_int32 ExporterMinorRevision { get; set; }
14     granny_int32 ExporterCustomization { get; set; }
15     granny_int32 ExporterBuildNumber { get; set; }
16     IntPtr ExtendedData { get; set; }
17     }
18     }