diff options
author | Mark Spruiell <mes@zeroc.com> | 2004-07-02 01:14:00 +0000 |
---|---|---|
committer | Mark Spruiell <mes@zeroc.com> | 2004-07-02 01:14:00 +0000 |
commit | c11d0fed2d828d3a23c895328843bda33a4fa71c (patch) | |
tree | 68a9538afa133c126852af348621b05eaa4d7257 /cpp/include/Slice/Checksum.h | |
parent | winsock2.h is now included (diff) | |
download | ice-c11d0fed2d828d3a23c895328843bda33a4fa71c.tar.bz2 ice-c11d0fed2d828d3a23c895328843bda33a4fa71c.tar.xz ice-c11d0fed2d828d3a23c895328843bda33a4fa71c.zip |
Slice checksum changes
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 |