Start: apply clang format

This commit is contained in:
wmayer
2023-09-03 11:27:47 +02:00
committed by wwmayer
parent 89f5f07ff7
commit fae6f8f5bb
21 changed files with 806 additions and 520 deletions

View File

@@ -27,13 +27,15 @@
#include <Base/PyObjectBase.h>
namespace Start {
class Module : public Py::ExtensionModule<Module>
namespace Start
{
class Module: public Py::ExtensionModule<Module>
{
public:
Module() : Py::ExtensionModule<Module>("Start")
Module()
: Py::ExtensionModule<Module>("Start")
{
initialize("This module is the Start module."); // register with Python
initialize("This module is the Start module.");// register with Python
}
private:
@@ -44,7 +46,7 @@ PyObject* initModule()
return Base::Interpreter().addModule(new Module);
}
} // namespace Start
}// namespace Start
/* Python entry */
PyMOD_INIT_FUNC(Start)