| 49 | }; |
| 50 | |
| 51 | struct OwnershipData { |
| 52 | DomainIdType domain; |
| 53 | IdType participant; |
| 54 | long owner; |
| 55 | |
| 56 | OwnershipData(DomainIdType d, IdType p, long o) |
| 57 | : domain(d), |
| 58 | participant(p), |
| 59 | owner(o) { } |
| 60 | }; |
| 61 | |
| 62 | template <typename Q, typename S> |
| 63 | struct TopicStrt { |