123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263 |
- #ifndef KEYEDCHANGES_H_
- #define KEYEDCHANGES_H_
- #include <fastdds/rtps/common/CacheChange.h>
- #include <chrono>
- namespace eprosima{
- namespace fastrtps{
- struct KeyedChanges
- {
-
- KeyedChanges()
- : cache_changes()
- , next_deadline_us()
- {
- }
-
- KeyedChanges(const KeyedChanges& other)
- : cache_changes(other.cache_changes)
- , next_deadline_us(other.next_deadline_us)
- {
- }
-
- ~KeyedChanges()
- {
- }
-
- std::vector<rtps::CacheChange_t*> cache_changes;
-
- std::chrono::steady_clock::time_point next_deadline_us;
- };
- }
- }
- #endif
|