/
BirdLeon
/
ROBLOX2016
Обзор
Документация
Войти
/
BirdLeon
/
ROBLOX2016
Код
Запросы
0
Задачи
Вики
Пакеты
0
Релизы
0
Аналитика
Безопасность
main
App/util/SystemAddress.cpp
27 строк
782 B
PatoFlamejanteTV
full source code
19 дек 2024, 19:11
19 дек 2024, 19:11
05db15d
Код
Авторство
О чём код?
#include "stdafx.h" #include "Util/SystemAddress.h" namespace RBX { bool SystemAddress::operator==( const RBX::SystemAddress& right ) const { return binaryAddress == right.binaryAddress && port == right.port; } bool SystemAddress::operator!=( const RBX::SystemAddress& right ) const { return binaryAddress != right.binaryAddress || port != right.port; } bool SystemAddress::operator>( const RBX::SystemAddress& right ) const { return ( ( binaryAddress > right.binaryAddress ) || ( ( binaryAddress == right.binaryAddress ) && ( port > right.port ) ) ); } bool SystemAddress::operator<( const RBX::SystemAddress& right ) const { return ( ( binaryAddress < right.binaryAddress ) || ( ( binaryAddress == right.binaryAddress ) && ( port < right.port ) ) ); } } // namespace