All: Reformat according to new standard
This commit is contained in:
committed by
Kacper Donat
parent
eafd18dac0
commit
25c3ba7338
@@ -28,14 +28,15 @@
|
||||
#include <Gui/WorkbenchManipulator.h>
|
||||
#include <CXX/Objects.hxx>
|
||||
|
||||
namespace Gui {
|
||||
namespace Gui
|
||||
{
|
||||
|
||||
/**
|
||||
* The WorkbenchManipulatorPython class accepts an instance of a Python class
|
||||
* that is supposed to implement any of the virtual functions.
|
||||
* @author Werner Mayer
|
||||
*/
|
||||
class GuiExport WorkbenchManipulatorPython : public WorkbenchManipulator
|
||||
class GuiExport WorkbenchManipulatorPython: public WorkbenchManipulator
|
||||
{
|
||||
public:
|
||||
static void installManipulator(const Py::Object& obj);
|
||||
@@ -68,8 +69,8 @@ protected:
|
||||
public:
|
||||
WorkbenchManipulatorPython(const WorkbenchManipulatorPython&) = delete;
|
||||
WorkbenchManipulatorPython(WorkbenchManipulatorPython&&) = delete;
|
||||
WorkbenchManipulatorPython& operator = (const WorkbenchManipulatorPython&) = delete;
|
||||
WorkbenchManipulatorPython& operator = (WorkbenchManipulatorPython&&) = delete;
|
||||
WorkbenchManipulatorPython& operator=(const WorkbenchManipulatorPython&) = delete;
|
||||
WorkbenchManipulatorPython& operator=(WorkbenchManipulatorPython&&) = delete;
|
||||
|
||||
private:
|
||||
void tryModifyMenuBar(MenuItem* menuBar);
|
||||
@@ -85,7 +86,7 @@ private:
|
||||
Py::Object object;
|
||||
};
|
||||
|
||||
} // namespace Gui
|
||||
} // namespace Gui
|
||||
|
||||
|
||||
#endif // GUI_WORKBENCHMANIPULATOR_PYTHON_H
|
||||
#endif // GUI_WORKBENCHMANIPULATOR_PYTHON_H
|
||||
|
||||
Reference in New Issue
Block a user