#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"
Include dependency graph for AVStreams_i.cpp:
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.
|
Definition at line 347 of file AVStreams_i.cpp. References MMDevice_Map_Hash_Key::hash_maximum_, and MMDevice_Map_Hash_Key::mmdevice_.
00349 { 00350 bool result = false; 00351 00352 try 00353 { 00354 const CORBA::ULong left_hash = 00355 left.mmdevice_->_hash (left.hash_maximum_); 00356 00357 const CORBA::ULong right_hash = 00358 right.mmdevice_->_hash (right.hash_maximum_); 00359 00360 result = left_hash < right_hash; 00361 } 00362 catch (const CORBA::Exception& ex) 00363 { 00364 ex._tao_print_exception ("operator < for MMDevice_Map_Hash_Key"); 00365 return false; 00366 } 00367 00368 return result; 00369 } |