1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859 |
- #ifndef LIBRARYSETTINGS_ATTRIBUTES_H_
- #define LIBRARYSETTINGS_ATTRIBUTES_H_
- namespace eprosima {
- namespace fastrtps {
- enum IntraprocessDeliveryType
- {
- INTRAPROCESS_OFF,
- INTRAPROCESS_USER_DATA_ONLY,
- INTRAPROCESS_FULL
- };
- class LibrarySettingsAttributes
- {
- public:
- LibrarySettingsAttributes() {
- }
- virtual ~LibrarySettingsAttributes() {
- }
- bool operator==(
- const LibrarySettingsAttributes& b) const
- {
- return (intraprocess_delivery == b.intraprocess_delivery);
- }
- IntraprocessDeliveryType intraprocess_delivery = INTRAPROCESS_FULL;
- };
- }
- }
- #endif
|