mirror of
https://git.salome-platform.org/gitpub/modules/geom.git
synced 2025-01-19 08:40:36 +05:00
19 lines
418 B
C++
19 lines
418 B
C++
#ifndef GEOMGUI_OCCSELECTOR_H
|
|
#define GEOMGUI_OCCSELECTOR_H
|
|
|
|
#include <SalomeApp_OCCSelector.h>
|
|
|
|
class GEOMGUI_OCCSelector : public SalomeApp_OCCSelector
|
|
{
|
|
public:
|
|
GEOMGUI_OCCSelector( OCCViewer_Viewer*, SUIT_SelectionMgr* );
|
|
virtual ~GEOMGUI_OCCSelector();
|
|
|
|
protected:
|
|
virtual void getSelection( SUIT_DataOwnerPtrList& ) const;
|
|
virtual void setSelection( const SUIT_DataOwnerPtrList& );
|
|
|
|
};
|
|
|
|
#endif
|