diff options
author | Dimitry Andric <dim@FreeBSD.org> | 2015-12-30 11:55:28 +0000 |
---|---|---|
committer | Dimitry Andric <dim@FreeBSD.org> | 2015-12-30 11:55:28 +0000 |
commit | e81d9d49145e432d917eea3a70d2ae74dcad1d89 (patch) | |
tree | 9ed5e1a91f242e2cb5911577356e487a55c01b78 /tools/lldb-mi/MIUtilMapIdToVariant.h | |
parent | 85d8ef8f1f0e0e063a8571944302be2d2026f823 (diff) | |
download | src-e81d9d49145e432d917eea3a70d2ae74dcad1d89.tar.gz src-e81d9d49145e432d917eea3a70d2ae74dcad1d89.zip |
Vendor import of stripped lldb trunk r256633:
Notes
Notes:
svn path=/vendor/lldb/dist/; revision=292932
Diffstat (limited to 'tools/lldb-mi/MIUtilMapIdToVariant.h')
-rw-r--r-- | tools/lldb-mi/MIUtilMapIdToVariant.h | 11 |
1 files changed, 4 insertions, 7 deletions
diff --git a/tools/lldb-mi/MIUtilMapIdToVariant.h b/tools/lldb-mi/MIUtilMapIdToVariant.h index c77f0b946683..1a164907dd06 100644 --- a/tools/lldb-mi/MIUtilMapIdToVariant.h +++ b/tools/lldb-mi/MIUtilMapIdToVariant.h @@ -22,27 +22,24 @@ // Details: MI common code utility class. Map type container that hold general // object types (by being a variant wrapper) // objects by ID. -// Gotchas: None. -// Authors: Illya Rudkin 19/06/2014. -// Changes: None. //-- class CMIUtilMapIdToVariant : public CMICmnBase { // Methods: public: - /* ctor */ CMIUtilMapIdToVariant(void); + /* ctor */ CMIUtilMapIdToVariant(); template <typename T> bool Add(const CMIUtilString &vId, const T &vData); - void Clear(void); + void Clear(); template <typename T> bool Get(const CMIUtilString &vId, T &vrwData, bool &vrwbFound) const; bool HaveAlready(const CMIUtilString &vId) const; - bool IsEmpty(void) const; + bool IsEmpty() const; bool Remove(const CMIUtilString &vId); // Overridden: public: // From CMICmnBase - /* dtor */ ~CMIUtilMapIdToVariant(void) override; + /* dtor */ ~CMIUtilMapIdToVariant() override; // Typedefs: private: |