ViewVC Help
View File
|
Revision Log
|
Show Annotations
|
Download File
|
View Changeset
|
Root Listing
root
/
gr2lib
/
trunk
/
gr2lib
/
core
/
interfaces
/
INativePointer.cs
Revision:
79
Committed:
Thu Jul 15 21:50:56 2010 UTC
(12 years, 8 months ago) by
william
File size:
230 byte(s)
Log Message:
create and implement interfaces for all core classes (for type casting)
File Contents
#
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
INativePointer
9
{
10
IntPtr
NativePointer
{
get
;
set
;
}
11
}
12
}