ViewVC Help
View File
|
Revision Log
|
Show Annotations
|
Download File
|
View Changeset
|
Root Listing
root
/
gr2lib
/
trunk
/
gr2lib
/
core
/
interfaces
/
IExtendedData.cs
Revision:
82
Committed:
Thu Jul 15 23:36:04 2010 UTC
(12 years, 6 months ago) by
william
File size:
228 byte(s)
Log Message:
move ExtenededData to it's own interface and make the classes, that need it, implement it.
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
IExtendedData
9
{
10
IntPtr
ExtendedData
{
get
;
set
;
}
11
}
12
}