diff options
Diffstat (limited to 'cpp/include/Slice/Util.h')
-rw-r--r-- | cpp/include/Slice/Util.h | 24 |
1 files changed, 24 insertions, 0 deletions
diff --git a/cpp/include/Slice/Util.h b/cpp/include/Slice/Util.h new file mode 100644 index 00000000000..8367cc85910 --- /dev/null +++ b/cpp/include/Slice/Util.h @@ -0,0 +1,24 @@ +// ********************************************************************** +// +// Copyright (c) 2003-2008 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_UTIL_H +#define SLICE_UTIL_H + +#include <Slice/Parser.h> + +namespace Slice +{ + +SLICE_API bool isAbsolute(const std::string&); +SLICE_API std::string fullPath(const std::string&); +SLICE_API std::string changeInclude(const std::string&, const std::vector<std::string>&); + +} + +#endif |