diff options
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. |