mirror of
https://github.com/opencv/opencv.git
synced 2024-12-02 16:00:17 +08:00
a362fd80df
- fix imports override. Problem is observed with BoostDesc. - add Ptr<> handling (constructor is protected from other packages). Observed in ximgproc: Ptr<StereoMatcher> createRightMatcher(Ptr<StereoMatcher> matcher_left)" where, "StereoMather" is from another package (calib3d)
19 lines
395 B
Prolog
19 lines
395 B
Prolog
//
|
|
// This file is auto-generated. Please don't modify it!
|
|
//
|
|
package org.opencv.$module;
|
|
|
|
$imports
|
|
|
|
$docs
|
|
$annotation
|
|
public class $jname {
|
|
|
|
protected final long nativeObj;
|
|
protected $jname(long addr) { nativeObj = addr; }
|
|
|
|
public long getNativeObjAddr() { return nativeObj; }
|
|
|
|
// internal usage only
|
|
public static $jname __fromPtr__(long addr) { return new $jname(addr); }
|