Renamed read/writeProtoBuf to read/write

This commit is contained in:
Michael Mandl 2018-11-20 07:59:12 +01:00
parent 6f35ffda7f
commit ef5686e83e
11 changed files with 30 additions and 30 deletions

View file

@ -12,7 +12,7 @@ VerbEndModel::VerbEndModel(QObject *parent)
"Temporal", "Relativ" } } };
}
void VerbEndModel::writeProtoBuf(ESGRAF48::VerbEndModel &model) const
void VerbEndModel::write(ESGRAF48::VerbEndModel &model) const
{
auto *telefonatModel = model.mutable_telefonat();
if (telefonatModel != nullptr)
@ -56,7 +56,7 @@ void VerbEndModel::writeProtoBuf(ESGRAF48::VerbEndModel &model) const
}
}
void VerbEndModel::readProtoBuf(const ESGRAF48::VerbEndModel &model)
void VerbEndModel::read(const ESGRAF48::VerbEndModel &model)
{
const auto &telefonatModel = model.telefonat();
{

View file

@ -10,6 +10,6 @@ class VerbEndModel : public CheckableTestModel
public:
VerbEndModel(QObject *parent);
void writeProtoBuf(ESGRAF48::VerbEndModel &model) const;
void readProtoBuf(const ESGRAF48::VerbEndModel &model);
void write(ESGRAF48::VerbEndModel &model) const;
void read(const ESGRAF48::VerbEndModel &model);
};