EveApi::CharacterData::CharacterData ( const CharacterData& other ): _name(other.name()), _characterID(other.characterID()), _corporationName(other.corporationName()), _corporationID(other.corporationID()) { }
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; }