Skip to content
Draft
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
3 changes: 3 additions & 0 deletions PDFNetPHP/PDFNetPHP.i
Original file line number Diff line number Diff line change
Expand Up @@ -845,6 +845,9 @@ namespace pdftron {
}
}

// Value Wrappers prevent excessive item creation by wrapping the item in SwigValueWrapper
%feature("valuewrapper") pdftron::PDF::PDFDoc;

//----------------------------------------------------------------------------------------------
/**
* Typemap for function pointers
Expand Down
3 changes: 3 additions & 0 deletions PDFNetPython/PDFNetPython.i
Original file line number Diff line number Diff line change
Expand Up @@ -713,6 +713,9 @@ namespace pdftron {
}
}

// Value Wrappers prevent excessive item creation by wrapping the item in SwigValueWrapper
%feature("valuewrapper") pdftron::PDF::PDFDoc;

//----------------------------------------------------------------------------------------------
/**
* Typemap for function pointers
Expand Down
4 changes: 4 additions & 0 deletions PDFNetRuby/PDFNetRuby.i
Original file line number Diff line number Diff line change
Expand Up @@ -673,6 +673,10 @@ namespace pdftron {
return Qnil;
}

// Value Wrappers prevent excessive item creation by wrapping the item in SwigValueWrapper
%feature("valuewrapper") pdftron::PDF::PDFDoc;


//----------------------------------------------------------------------------------------------
/**
* Typemap for function pointers
Expand Down
3 changes: 3 additions & 0 deletions PDFTronGo/pdftron.i
Original file line number Diff line number Diff line change
Expand Up @@ -296,6 +296,9 @@ namespace pdftron {
}
}

// Value Wrappers prevent excessive item creation by wrapping the item in SwigValueWrapper
%feature("valuewrapper") pdftron::PDF::PDFDoc;

/**
* Turns on the director feature for the following classes.
* C++ equivalent of a proxy class. User extends this class in GOLang
Expand Down