Expose shared_ptr to swig
Possibly not the right way to go about it but technically works
This commit is contained in:
parent
716328e511
commit
182abd4652
|
@ -111,6 +111,11 @@ public:
|
|||
*/
|
||||
NETCLASS* GetNetClass() { return m_netClass.get(); }
|
||||
|
||||
/**
|
||||
* @note Slow version for swig access
|
||||
*/
|
||||
std::shared_ptr<NETCLASS> GetNetClassSlow() { return m_netClass; }
|
||||
|
||||
int GetNetCode() const { return m_netCode; }
|
||||
void SetNetCode( int aNetCode ) { m_netCode = aNetCode; }
|
||||
|
||||
|
|
Loading…
Reference in New Issue