summaryrefslogtreecommitdiff
path: root/cpp/src/qpid/framing/FieldTable.h
diff options
context:
space:
mode:
authorAndrew Stitcher <astitcher@apache.org>2007-10-23 12:41:16 +0000
committerAndrew Stitcher <astitcher@apache.org>2007-10-23 12:41:16 +0000
commit037c28c0c658b44529783b79a6b895e3b89dc699 (patch)
tree38667354023added92eff214d939158635f66ef0 /cpp/src/qpid/framing/FieldTable.h
parent9e171cd92aeb446b080231ae100d75f4d2b0dfe4 (diff)
downloadqpid-python-037c28c0c658b44529783b79a6b895e3b89dc699.tar.gz
More tidying up of field table API
git-svn-id: https://svn.apache.org/repos/asf/incubator/qpid/trunk/qpid@587480 13f79535-47bb-0310-9956-ffa450edef68
Diffstat (limited to 'cpp/src/qpid/framing/FieldTable.h')
-rw-r--r--cpp/src/qpid/framing/FieldTable.h8
1 files changed, 4 insertions, 4 deletions
diff --git a/cpp/src/qpid/framing/FieldTable.h b/cpp/src/qpid/framing/FieldTable.h
index a3e01a968e..707496a861 100644
--- a/cpp/src/qpid/framing/FieldTable.h
+++ b/cpp/src/qpid/framing/FieldTable.h
@@ -64,7 +64,7 @@ class FieldTable
void setTable(const std::string& name, const FieldTable& value);
//void setDecimal(string& name, xxx& value);
-// std::string getString(const std::string& name) const;
+ std::string getString(const std::string& name) const;
int getInt(const std::string& name) const;
// uint64_t getTimestamp(const std::string& name) const;
// void getTable(const std::string& name, FieldTable& value) const;
@@ -86,9 +86,9 @@ class FieldTable
friend std::ostream& operator<<(std::ostream& out, const FieldTable& body);
};
-class FieldNotFoundException{};
-class UnknownFieldName : public FieldNotFoundException{};
-class IncorrectFieldType : public FieldNotFoundException{};
+//class FieldNotFoundException{};
+//class UnknownFieldName : public FieldNotFoundException{};
+//class IncorrectFieldType : public FieldNotFoundException{};
}
}