Renamed read/writeProtoBuf to read/write
This commit is contained in:
parent
6f35ffda7f
commit
ef5686e83e
11 changed files with 30 additions and 30 deletions
|
@ -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();
|
||||
{
|
||||
|
|
|
@ -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);
|
||||
};
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue