12345678910111213141516171819202122232425262728293031323334 |
- #include "XmlFile.h"
- namespace android {
- namespace vintf {
- bool MatrixXmlFile::operator==(const MatrixXmlFile& other) const {
- return name() == other.name() && overriddenPath() == other.overriddenPath() &&
- optional() == other.optional() && format() == other.format() &&
- versionRange() == other.versionRange();
- }
- bool ManifestXmlFile::operator==(const ManifestXmlFile& other) const {
- return name() == other.name() && overriddenPath() == other.overriddenPath() &&
- version() == other.version();
- }
- }
- }
|