diff options
author | Bernard Normier <bernard@zeroc.com> | 2018-10-18 12:01:54 -0400 |
---|---|---|
committer | Jose <pepone@users.noreply.github.com> | 2018-10-18 18:01:53 +0200 |
commit | 456001e3e4dbb3f15396c0598b6ddb5436ac3a2a (patch) | |
tree | facb9db494f91b066a1c0b5e29c371ec523a82e7 /cpp/src/Slice/Parser.h | |
parent | Update Xamarin test instructions (diff) | |
download | ice-456001e3e4dbb3f15396c0598b6ddb5436ac3a2a.tar.bz2 ice-456001e3e4dbb3f15396c0598b6ddb5436ac3a2a.tar.xz ice-456001e3e4dbb3f15396c0598b6ddb5436ac3a2a.zip |
Rework cs:namespace implementation (fix issue #239) (#249)
* Rework the cs:namespace implementation
No longer rely on Ice.Packages. Fixes #239.
* Renamed Ice/packagemd to Ice/namespacemd (C#)
* Removed Ice.Package property from C# tests
* Switched to get-only attribute, fixed Xamarin test
Diffstat (limited to 'cpp/src/Slice/Parser.h')
-rw-r--r-- | cpp/src/Slice/Parser.h | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/cpp/src/Slice/Parser.h b/cpp/src/Slice/Parser.h index 219c14ae151..81c01077a31 100644 --- a/cpp/src/Slice/Parser.h +++ b/cpp/src/Slice/Parser.h @@ -1092,7 +1092,8 @@ public: ContainedList findUsedBy(const ContainedPtr&) const; void addTypeId(int, const std::string&); - std::string getTypeId(int); + std::string getTypeId(int) const; + bool hasCompactTypeId() const; bool usesNonLocals() const; bool usesConsts() const; |