Sheet: Apply clang format

This commit is contained in:
wmayer
2023-09-10 13:07:23 +02:00
committed by wwmayer
parent 4d3c9ce1c5
commit 50bb81e6fc
25 changed files with 2733 additions and 2054 deletions

View File

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