Exemplo n.º 1
0
EveApi::CharacterData::CharacterData ( const CharacterData& other ):
_name(other.name()),
_characterID(other.characterID()),
_corporationName(other.corporationName()),
_corporationID(other.corporationID())
{
}
Exemplo n.º 2
0
bool EveApi::CharacterData::operator==(const CharacterData& other) const
{
    if (this->_name == other.name() && this->_characterID == other.characterID()
        && this->_corporationName == other.corporationName()
        && this->_corporationID == other.corporationID())
        return true;
    return false;
}