Robot: Apply clang format

This commit is contained in:
wmayer
2023-09-11 10:24:21 +02:00
committed by wwmayer
parent e0ff39ccdf
commit 3acb817ee7
33 changed files with 1215 additions and 967 deletions

View File

@@ -22,9 +22,11 @@
#include "PreCompiled.h"
// clang-format off
// inclusion of the generated files (generated out of RobotObjectPy.xml)
#include "RobotObjectPy.h"
#include "RobotObjectPy.cpp"
// clang-format on
using namespace Robot;
@@ -36,23 +38,19 @@ std::string RobotObjectPy::representation() const
}
PyObject* RobotObjectPy::getRobot(PyObject * /*args*/)
PyObject* RobotObjectPy::getRobot(PyObject* /*args*/)
{
PyErr_SetString(PyExc_NotImplementedError, "Not yet implemented");
return nullptr;
}
PyObject *RobotObjectPy::getCustomAttributes(const char* /*attr*/) const
PyObject* RobotObjectPy::getCustomAttributes(const char* /*attr*/) const
{
return nullptr;
}
int RobotObjectPy::setCustomAttributes(const char* /*attr*/, PyObject* /*obj*/)
{
return 0;
return 0;
}