blob: 5d5c2a7a85f5699f1a68e1b391f5bc64d227f57c (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
|
//
// Copyright (c) ZeroC, Inc. All rights reserved.
//
#pragma once
[["ice-prefix", "cpp:header-ext:h"]]
#include <IceStorm/SubscriberRecord.ice>
#include <IceStorm/LLURecord.ice>
module IceStormElection
{
dictionary<string, LogUpdate> StringLogUpdateDict;
}
module IceStorm
{
dictionary<SubscriberRecordKey, SubscriberRecord> SubscriberRecordDict;
struct AllData
{
IceStormElection::StringLogUpdateDict llus;
IceStorm::SubscriberRecordDict subscribers;
}
}
|