fix %template + static class members
git-svn-id: https://swig.svn.sourceforge.net/svnroot/swig/trunk/SWIG@6623 626c5289-ae23-0410-ae9c-e8d60b6d4f22
This commit is contained in:
parent
9cdd5195ab
commit
cb15d93f18
2 changed files with 32 additions and 28 deletions
|
|
@ -155,11 +155,13 @@ namespace jafar {
|
|||
namespace jmath {
|
||||
class EulerT3D {
|
||||
public:
|
||||
static void hello(){}
|
||||
|
||||
template<class VecFrame, class Vec, class VecRes>
|
||||
static inline void toFrame(const VecFrame& frame_, const Vec&v_,VecRes& vRes){}
|
||||
static void toFrame(const VecFrame& frame_, const Vec&v_,VecRes& vRes){}
|
||||
};
|
||||
}
|
||||
}
|
||||
%}
|
||||
|
||||
%template(EulerT3D_toFrame) jafar::jmath::EulerT3D::toFrame<int,int,int>;
|
||||
%template(toFrame) jafar::jmath::EulerT3D::toFrame<int,int,int>;
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue