Skip to content

Commit

Permalink
Added default constructor to xxx_ParamsParser generated classes
Browse files Browse the repository at this point in the history
  • Loading branch information
randaz81 committed Feb 9, 2024
1 parent 8b17de3 commit 3e5d0a7
Show file tree
Hide file tree
Showing 5 changed files with 7 additions and 4 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -8,7 +8,7 @@
// This is an automatically generated file. Please do not edit it.
// It will be re-generated if the cmake flag ALLOW_DEVICE_PARAM_PARSER_GERNERATION is ON.

// Generated on: Wed Feb 7 16:51:11 2024
// Generated on: Fri Feb 9 16:59:13 2024


#include "AudioToFileDevice_ParamsParser.h"
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -8,7 +8,7 @@
// This is an automatically generated file. Please do not edit it.
// It will be re-generated if the cmake flag ALLOW_DEVICE_PARAM_PARSER_GERNERATION is ON.

// Generated on: Wed Feb 7 16:51:11 2024
// Generated on: Fri Feb 9 16:59:13 2024


#ifndef AUDIOTOFILEDEVICE_PARAMSPARSER_H
Expand Down Expand Up @@ -43,6 +43,7 @@
class AudioToFileDevice_ParamsParser : public yarp::dev::IDeviceDriverParams
{
public:
AudioToFileDevice_ParamsParser() = default;
~AudioToFileDevice_ParamsParser() override = default;

public:
Expand Down
2 changes: 1 addition & 1 deletion src/devices/deviceBundler/DeviceBundler_ParamsParser.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -8,7 +8,7 @@
// This is an automatically generated file. Please do not edit it.
// It will be re-generated if the cmake flag ALLOW_DEVICE_PARAM_PARSER_GERNERATION is ON.

// Generated on: Wed Feb 7 16:51:11 2024
// Generated on: Fri Feb 9 16:59:13 2024


#include "DeviceBundler_ParamsParser.h"
Expand Down
3 changes: 2 additions & 1 deletion src/devices/deviceBundler/DeviceBundler_ParamsParser.h
Original file line number Diff line number Diff line change
Expand Up @@ -8,7 +8,7 @@
// This is an automatically generated file. Please do not edit it.
// It will be re-generated if the cmake flag ALLOW_DEVICE_PARAM_PARSER_GERNERATION is ON.

// Generated on: Wed Feb 7 16:51:11 2024
// Generated on: Fri Feb 9 16:59:13 2024


#ifndef DEVICEBUNDLER_PARAMSPARSER_H
Expand Down Expand Up @@ -43,6 +43,7 @@
class DeviceBundler_ParamsParser : public yarp::dev::IDeviceDriverParams
{
public:
DeviceBundler_ParamsParser() = default;
~DeviceBundler_ParamsParser() override = default;

public:
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -69,6 +69,7 @@ std::string ParamsFilesGenerator::generateHeader()
class " << m_classname << "_ParamsParser : public yarp::dev::IDeviceDriverParams\n\
{\n\
public:\n\
" << m_classname << "_ParamsParser() = default;\n\
~" << m_classname << "_ParamsParser() override = default;\n\
\n\
public:\n";
Expand Down

0 comments on commit 3e5d0a7

Please sign in to comment.