Browse Source

Renamed the ICppInstance's 'NativePtr' property to 'Instance'.

pull/34/merge
triton 12 years ago
parent
commit
7e4f59f83c
  1. 6
      include/CppSharp.h

6
include/CppSharp.h

@ -13,10 +13,10 @@ @@ -13,10 +13,10 @@
public interface class ICppInstance
{
property System::IntPtr^ NativePtr
property System::IntPtr Instance
{
System::IntPtr^ get();
void set(System::IntPtr^);
System::IntPtr get();
void set(System::IntPtr);
}
};

Loading…
Cancel
Save