#include "orbsvcs/AV/AVStreams_i.h"
#include "orbsvcs/AV/sfp.h"
#include "orbsvcs/AV/MCast.h"
#include "orbsvcs/AV/RTCP.h"
#include "tao/debug.h"
#include "tao/ORB_Core.h"
#include "tao/AnyTypeCode/Any.h"
#include "ace/OS_NS_arpa_inet.h"
Go to the source code of this file.
Functions | |
bool | operator< (const MMDevice_Map_Hash_Key &left, const MMDevice_Map_Hash_Key &right) |
Definition in file AVStreams_i.cpp.
bool operator< | ( | const MMDevice_Map_Hash_Key & | left, | |
const MMDevice_Map_Hash_Key & | right | |||
) |
Definition at line 363 of file AVStreams_i.cpp.
{ bool result = false; try { const CORBA::ULong left_hash = left.mmdevice_->_hash (left.hash_maximum_); const CORBA::ULong right_hash = right.mmdevice_->_hash (right.hash_maximum_); result = left_hash < right_hash; } catch (const CORBA::Exception& ex) { ex._tao_print_exception ("operator < for MMDevice_Map_Hash_Key"); return false; } return result; }