mirror of
https://git.dev.opencascade.org/repos/occt.git
synced 2025-04-16 10:08:36 +03:00
0031321: C# wrapper - wrap AIS_ViewController
Added missing virtual destructor for AIS_ViewController.
This commit is contained in:
parent
fe758dbe2c
commit
00ea7f2676
@ -113,6 +113,15 @@ AIS_ViewController::AIS_ViewController()
|
|||||||
myMouseGestureMap.Bind (Aspect_VKeyMouse_MiddleButton | Aspect_VKeyFlags_CTRL, AIS_MouseGesture_Pan);
|
myMouseGestureMap.Bind (Aspect_VKeyMouse_MiddleButton | Aspect_VKeyFlags_CTRL, AIS_MouseGesture_Pan);
|
||||||
}
|
}
|
||||||
|
|
||||||
|
// =======================================================================
|
||||||
|
// function : ~AIS_ViewController
|
||||||
|
// purpose :
|
||||||
|
// =======================================================================
|
||||||
|
AIS_ViewController::~AIS_ViewController()
|
||||||
|
{
|
||||||
|
//
|
||||||
|
}
|
||||||
|
|
||||||
// =======================================================================
|
// =======================================================================
|
||||||
// function : ResetViewInput
|
// function : ResetViewInput
|
||||||
// purpose :
|
// purpose :
|
||||||
|
@ -51,6 +51,9 @@ public:
|
|||||||
//! Empty constructor.
|
//! Empty constructor.
|
||||||
Standard_EXPORT AIS_ViewController();
|
Standard_EXPORT AIS_ViewController();
|
||||||
|
|
||||||
|
//! Destructor.
|
||||||
|
Standard_EXPORT virtual ~AIS_ViewController();
|
||||||
|
|
||||||
//! Return input buffer.
|
//! Return input buffer.
|
||||||
const AIS_ViewInputBuffer& InputBuffer (AIS_ViewInputBufferType theType) const { return theType == AIS_ViewInputBufferType_UI ? myUI : myGL; }
|
const AIS_ViewInputBuffer& InputBuffer (AIS_ViewInputBufferType theType) const { return theType == AIS_ViewInputBufferType_UI ? myUI : myGL; }
|
||||||
|
|
||||||
|
Loading…
x
Reference in New Issue
Block a user