diff options
Diffstat (limited to 'cpp/include/Slice/Checksum.h')
-rw-r--r-- | cpp/include/Slice/Checksum.h | 24 |
1 files changed, 24 insertions, 0 deletions
diff --git a/cpp/include/Slice/Checksum.h b/cpp/include/Slice/Checksum.h new file mode 100644 index 00000000000..020ad60ef60 --- /dev/null +++ b/cpp/include/Slice/Checksum.h @@ -0,0 +1,24 @@ +// ********************************************************************** +// +// Copyright (c) 2003-2004 ZeroC, Inc. All rights reserved. +// +// This copy of Ice is licensed to you under the terms described in the +// ICE_LICENSE file included in this distribution. +// +// ********************************************************************** + +#ifndef SLICE_CHECKSUM_H +#define SLICE_CHECKSUM_H + +#include <Slice/Parser.h> + +namespace Slice +{ + +typedef std::map<std::string, std::vector<unsigned char> > ChecksumMap; + +SLICE_API ChecksumMap createChecksums(const UnitPtr&); + +} + +#endif |