Mod: redundant void 2

This commit is contained in:
berniev
2022-08-07 20:05:16 +10:00
committed by wwmayer
parent 311abcc43e
commit da9ebc572f
805 changed files with 3787 additions and 3787 deletions

View File

@@ -38,7 +38,7 @@
using namespace Attacher;
// returns a string which represents the object e.g. when printed in python
std::string AttachEnginePy::representation(void) const
std::string AttachEnginePy::representation() const
{
return std::string("<Attacher::AttachEngine>");
}
@@ -92,7 +92,7 @@ int AttachEnginePy::PyInit(PyObject* args, PyObject* /*kwd*/)
}
Py::String AttachEnginePy::getAttacherType(void) const
Py::String AttachEnginePy::getAttacherType() const
{
return Py::String(std::string(this->getAttachEnginePtr()->getTypeId().getName()));
}
@@ -110,7 +110,7 @@ Py::String AttachEnginePy::getAttacherType(void) const
throw Py::Exception();\
}
Py::String AttachEnginePy::getMode(void) const
Py::String AttachEnginePy::getMode() const
{
try {
AttachEngine &attacher = *(this->getAttachEnginePtr());
@@ -127,7 +127,7 @@ void AttachEnginePy::setMode(Py::String arg)
} ATTACHERPY_STDCATCH_ATTR;
}
Py::Object AttachEnginePy::getReferences(void) const
Py::Object AttachEnginePy::getReferences() const
{
try {
AttachEngine &attacher = *(this->getAttachEnginePtr());
@@ -144,7 +144,7 @@ void AttachEnginePy::setReferences(Py::Object arg)
} ATTACHERPY_STDCATCH_ATTR;
}
Py::Object AttachEnginePy::getAttachmentOffset(void) const
Py::Object AttachEnginePy::getAttachmentOffset() const
{
try {
AttachEngine &attacher = *(this->getAttachEnginePtr());
@@ -167,7 +167,7 @@ void AttachEnginePy::setAttachmentOffset(Py::Object arg)
} ATTACHERPY_STDCATCH_ATTR;
}
Py::Boolean AttachEnginePy::getReverse(void) const
Py::Boolean AttachEnginePy::getReverse() const
{
try {
AttachEngine &attacher = *(this->getAttachEnginePtr());
@@ -183,7 +183,7 @@ void AttachEnginePy::setReverse(Py::Boolean arg)
} ATTACHERPY_STDCATCH_ATTR;
}
Py::Float AttachEnginePy::getParameter(void) const
Py::Float AttachEnginePy::getParameter() const
{
try {
AttachEngine &attacher = *(this->getAttachEnginePtr());
@@ -200,7 +200,7 @@ void AttachEnginePy::setParameter(Py::Float arg)
}
Py::List AttachEnginePy::getCompleteModeList(void) const
Py::List AttachEnginePy::getCompleteModeList() const
{
try {
Py::List ret;
@@ -212,7 +212,7 @@ Py::List AttachEnginePy::getCompleteModeList(void) const
} ATTACHERPY_STDCATCH_ATTR;
}
Py::List AttachEnginePy::getCompleteRefTypeList(void) const
Py::List AttachEnginePy::getCompleteRefTypeList() const
{
try {
Py::List ret;
@@ -224,7 +224,7 @@ Py::List AttachEnginePy::getCompleteRefTypeList(void) const
} ATTACHERPY_STDCATCH_ATTR;
}
Py::List AttachEnginePy::getImplementedModes(void) const
Py::List AttachEnginePy::getImplementedModes() const
{
try {
Py::List ret;