blob: 1f6a43341b0f41bec34800defaceb56c0c55ee0a (
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
28
29
30
31
32
33
|
//
// Copyright (c) ZeroC, Inc. All rights reserved.
//
#ifndef ICE_SLICE_CHECKSUM_H
#define ICE_SLICE_CHECKSUM_H
#include <Ice/SliceChecksumDict.h>
namespace Ice
{
/**
* Obtains the map containing the checksums for Slice definitions.
* @return The checksum map.
*/
ICE_API SliceChecksumDict sliceChecksums();
}
namespace IceInternal
{
class ICE_API SliceChecksumInit : private IceUtil::noncopyable
{
public:
SliceChecksumInit(const char*[]);
};
}
#endif
|