diff options
author | Matthew Newhook <matthew@zeroc.com> | 2007-09-04 11:14:53 +0800 |
---|---|---|
committer | Matthew Newhook <matthew@zeroc.com> | 2007-09-04 11:14:53 +0800 |
commit | a55b88dc20dacaf23c5fce8415daf28c63388ccf (patch) | |
tree | 713968abb7de9959600eb59461bd97384b0c4d74 /cpp/include/Slice/PythonUtil.h | |
parent | bug 2442 - slice2java generating bad impl code (diff) | |
download | ice-a55b88dc20dacaf23c5fce8415daf28c63388ccf.tar.bz2 ice-a55b88dc20dacaf23c5fce8415daf28c63388ccf.tar.xz ice-a55b88dc20dacaf23c5fce8415daf28c63388ccf.zip |
http://bugzilla.zeroc.com/bugzilla/show_bug.cgi?id=2369
Diffstat (limited to 'cpp/include/Slice/PythonUtil.h')
-rw-r--r-- | cpp/include/Slice/PythonUtil.h | 10 |
1 files changed, 6 insertions, 4 deletions
diff --git a/cpp/include/Slice/PythonUtil.h b/cpp/include/Slice/PythonUtil.h index d0caa2a2dcf..fdd1f98fc1c 100644 --- a/cpp/include/Slice/PythonUtil.h +++ b/cpp/include/Slice/PythonUtil.h @@ -46,11 +46,13 @@ SLICE_API std::string fixIdent(const std::string&); SLICE_API std::string getPackageMetadata(const Slice::ContainedPtr&); // -// Get the fully-qualified name of the given definition, including any package -// defined via metadata. If a suffix is provided, it is prepended to the -// definition's unqualified name. +// Get the fully-qualified name of the given definition, including any +// package defined via metadata. If a suffix is provided, it is +// prepended to the definition's unqualified name. If the nameSuffix +// is provided, it is appended to the containers name. // -SLICE_API std::string getAbsolute(const Slice::ContainedPtr&, const std::string& = std::string()); +SLICE_API std::string getAbsolute(const Slice::ContainedPtr&, const std::string& = std::string(), + const std::string& = std::string()); // // Emit a comment header. |