summaryrefslogtreecommitdiff
path: root/src/libs/qtcreatorcdbext/symbolgroupvalue.h
diff options
context:
space:
mode:
authorFriedemann Kleint <Friedemann.Kleint@nokia.com>2011-02-04 15:08:31 +0100
committerFriedemann Kleint <Friedemann.Kleint@nokia.com>2011-02-04 15:10:17 +0100
commit4d46c69d255cf74838a779b24de9d0df15878a11 (patch)
tree5e26b2f7637dd275b1fe5a0642533d2df6cf1a4d /src/libs/qtcreatorcdbext/symbolgroupvalue.h
parent8a2aab79e9db6a6bf0c179e8e84a812d0c1b62c1 (diff)
downloadqt-creator-4d46c69d255cf74838a779b24de9d0df15878a11.tar.gz
Debugger: Documentation work on qtcreatorcdbext/Debugger.
Add comments, introduce internal switch in doc/api/qtcreator-api.qdocconf.
Diffstat (limited to 'src/libs/qtcreatorcdbext/symbolgroupvalue.h')
-rw-r--r--src/libs/qtcreatorcdbext/symbolgroupvalue.h13
1 files changed, 0 insertions, 13 deletions
diff --git a/src/libs/qtcreatorcdbext/symbolgroupvalue.h b/src/libs/qtcreatorcdbext/symbolgroupvalue.h
index 610a95a800..6bb7cfbcf5 100644
--- a/src/libs/qtcreatorcdbext/symbolgroupvalue.h
+++ b/src/libs/qtcreatorcdbext/symbolgroupvalue.h
@@ -45,7 +45,6 @@ class AbstractSymbolGroupNode;
class SymbolGroupNode;
class SymbolGroup;
-// Structure to pass all IDebug interfaces required for SymbolGroupValue
struct SymbolGroupValueContext
{
SymbolGroupValueContext(CIDebugDataSpaces *ds, CIDebugSymbols *s) : dataspaces(ds), symbols(s) {}
@@ -55,16 +54,6 @@ struct SymbolGroupValueContext
CIDebugSymbols *symbols;
};
-/* SymbolGroupValue: Flyweight tied to a SymbolGroupNode
- * providing a convenient operator[] (name, index) and value
- * getters for notation of dumpers.
- * Inaccessible members return a SymbolGroupValue in state 'invalid'.
- * Example:
- * SymbolGroupValue container(symbolGroupNode, symbolGroupValueContext);
- * if (SymbolGroupValue sizeV = container["d"]["size"])
- * int size = sizeV.intValue()
- * etc. */
-
class SymbolGroupValue
{
explicit SymbolGroupValue(const std::string &parentError);
@@ -161,8 +150,6 @@ private:
// For debugging purposes
std::ostream &operator<<(std::ostream &, const SymbolGroupValue &v);
-// Qt Information determined on demand: Namespace, modules and basic class
-// names containing the module for fast lookup.
struct QtInfo
{
static const QtInfo &get(const SymbolGroupValueContext &ctx);