5 #include "ace/FILE_Addr.h"
6 #include "ace/SString.h"
8 /* Opaque class that represents a caller's ID */
12 CallerId () : id_ (ACE_TEXT ("UNKNOWN"))
15 CallerId (ACE_TString id
) : id_(id
)
18 const ACE_TCHAR
* string()
20 return this->id_
.c_str ();
32 FIRST_VIDEO_CODEC
= 1,
58 MessageType (int codec
, const ACE_FILE_Addr
& addr
)
59 : codec_(codec
), addr_(addr
)
67 ACE_FILE_Addr
&get_addr ()
75 this->get_codec () > FIRST_VIDEO_CODEC
&&
76 this->get_codec () < LAST_VIDEO_CODEC
;
82 this->get_codec () > FIRST_AUDIO_CODEC
&&
83 this->get_codec () < LAST_AUDIO_CODEC
;
89 this->get_codec () > FIRST_TEXT_CODEC
&&
90 this->get_codec () < LAST_TEXT_CODEC
;
98 # endif /* MESSAGE_INFO_H */