summaryrefslogtreecommitdiff
path: root/cpp/include/qpid
diff options
context:
space:
mode:
authorKenneth Anthony Giusti <kgiusti@apache.org>2010-04-19 18:56:53 +0000
committerKenneth Anthony Giusti <kgiusti@apache.org>2010-04-19 18:56:53 +0000
commit28988707799e2f5a0efe08ea9094e91d61f95ec7 (patch)
tree17cee54e1dfaae452e7f86f423eb16b34edb0be4 /cpp/include/qpid
parente95472e9b42c6dcb512b343880fe829213444ab6 (diff)
downloadqpid-python-28988707799e2f5a0efe08ea9094e91d61f95ec7.tar.gz
QMF: Add timestamps to generated V2 objects
git-svn-id: https://svn.apache.org/repos/asf/qpid/trunk/qpid@935704 13f79535-47bb-0310-9956-ffa450edef68
Diffstat (limited to 'cpp/include/qpid')
-rw-r--r--cpp/include/qpid/management/ManagementObject.h12
1 files changed, 6 insertions, 6 deletions
diff --git a/cpp/include/qpid/management/ManagementObject.h b/cpp/include/qpid/management/ManagementObject.h
index da255d7879..9c2d14fa94 100644
--- a/cpp/include/qpid/management/ManagementObject.h
+++ b/cpp/include/qpid/management/ManagementObject.h
@@ -147,9 +147,7 @@ protected:
QPID_COMMON_EXTERN int getThreadIndex();
QPID_COMMON_EXTERN void writeTimestamps(std::string& buf) const;
- QPID_COMMON_EXTERN void writeTimestamps(types::Variant::Map& map) const;
QPID_COMMON_EXTERN void readTimestamps(const std::string& buf);
- QPID_COMMON_EXTERN void readTimestamps(const types::Variant::Map& buf);
QPID_COMMON_EXTERN uint32_t writeTimestampsSize() const;
public:
@@ -173,6 +171,8 @@ protected:
virtual void doMethod(std::string& methodName,
const types::Variant::Map& inMap,
types::Variant::Map& outMap) = 0;
+ QPID_COMMON_EXTERN void writeTimestamps(types::Variant::Map& map) const;
+ QPID_COMMON_EXTERN void readTimestamps(const types::Variant::Map& buf);
/**
* The following five methods are not pure-virtual because they will only
@@ -215,11 +215,11 @@ protected:
//QPID_COMMON_EXTERN uint32_t encodedSize() const { return writePropertiesSize(); }
// Encode/Decode the entire object as a map
- QPID_COMMON_EXTERN void mapEncode(types::Variant::Map& map,
- bool includeProperties=true,
- bool includeStatistics=true);
+ //QPID_COMMON_EXTERN void mapEncode(types::Variant::Map& map,
+ //bool includeProperties=true,
+ //bool includeStatistics=true);
- QPID_COMMON_EXTERN void mapDecode(const types::Variant::Map& map);
+ //QPID_COMMON_EXTERN void mapDecode(const types::Variant::Map& map);
};
typedef std::map<ObjectId, ManagementObject*> ManagementObjectMap;