1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859606162636465666768 |
- #ifndef _FASTDDS_RTPS_MATCHINGINFO_H_
- #define _FASTDDS_RTPS_MATCHINGINFO_H_
- #include <fastdds/rtps/common/Guid.h>
- namespace eprosima{
- namespace fastrtps{
- namespace rtps{
- #if defined(_WIN32)
- enum RTPS_DllAPI MatchingStatus{
- #else
- enum MatchingStatus{
- #endif
- MATCHED_MATCHING,
- REMOVED_MATCHING
- };
- class RTPS_DllAPI MatchingInfo
- {
- public:
-
- MatchingInfo():status(MATCHED_MATCHING){};
-
- MatchingInfo(MatchingStatus stat,const GUID_t&guid):status(stat),remoteEndpointGuid(guid){};
- ~MatchingInfo(){};
-
- MatchingStatus status;
-
- GUID_t remoteEndpointGuid;
- };
- }
- }
- }
- #endif /* _FASTDDS_RTPS_MATCHINGINFO_H_ */
|