14 lines
297 B
C++
14 lines
297 B
C++
#include "meta_bundle.h"
|
|
#include <algorithm>
|
|
|
|
namespace engineapi
|
|
{
|
|
bool MetaBundle::operator==(const MetaBundle& other)const
|
|
{
|
|
return metadatas == other.metadatas;
|
|
}
|
|
bool MetaBundle::operator!=(const MetaBundle& other)const
|
|
{
|
|
return !(*this == other);
|
|
}
|
|
} |