コード例 #1
0
ファイル: charactersdata.cpp プロジェクト: sjagoe/evemanager
EveApi::CharacterData::CharacterData ( const CharacterData& other ):
_name(other.name()),
_characterID(other.characterID()),
_corporationName(other.corporationName()),
_corporationID(other.corporationID())
{
}
コード例 #2
0
ファイル: charactersdata.cpp プロジェクト: sjagoe/evemanager
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;
}