remove accessors in Actions added for external serialization

This commit is contained in:
Arne Morten Kvarving
2020-03-17 14:02:21 +01:00
parent 91d62c63a1
commit 6519429291
2 changed files with 0 additions and 7 deletions

View File

@@ -51,8 +51,6 @@ public:
std::vector<ActionX>::const_iterator begin() const;
std::vector<ActionX>::const_iterator end() const;
const std::vector<ActionX>& getActions() const;
bool operator==(const Actions& data) const;
template<class Serializer>

View File

@@ -97,11 +97,6 @@ std::vector<ActionX>::const_iterator Actions::end() const {
}
const std::vector<ActionX>& Actions::getActions() const {
return actions;
}
bool Actions::operator==(const Actions& data) const {
return actions == data.actions;
}