summaryrefslogtreecommitdiff
path: root/qpid/cpp/include
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
commitf5cc88101cd67ad288811e96f334e71201e69db0 (patch)
tree03df2e21d6cbc3c8336891c257118a149de1ce47 /qpid/cpp/include
parentf6f984c7108c2741a853e2437f00d8838f831783 (diff)
downloadqpid-python-f5cc88101cd67ad288811e96f334e71201e69db0.tar.gz
QMF: Add timestamps to generated V2 objects
git-svn-id: https://svn.apache.org/repos/asf/qpid/trunk@935704 13f79535-47bb-0310-9956-ffa450edef68
Diffstat (limited to 'qpid/cpp/include')
-rw-r--r--qpid/cpp/include/qpid/management/ManagementObject.h12
1 files changed, 6 insertions, 6 deletions
diff --git a/qpid/cpp/include/qpid/management/ManagementObject.h b/qpid/cpp/include/qpid/management/ManagementObject.h
index da255d7879..9c2d14fa94 100644
--- a/qpid/cpp/include/qpid/management/ManagementObject.h
+++ b/qpid/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;