diff options
| author | Ken Giusti <kgiusti@apache.org> | 2010-04-19 18:56:53 +0000 |
|---|---|---|
| committer | Ken Giusti <kgiusti@apache.org> | 2010-04-19 18:56:53 +0000 |
| commit | 0b061a6776a3abb8d1d4bfc53bce2796dfc53891 (patch) | |
| tree | 17cee54e1dfaae452e7f86f423eb16b34edb0be4 /cpp/include | |
| parent | b0446768d35fe519e114ccaa9aa25c74a670d7d5 (diff) | |
| download | qpid-python-0b061a6776a3abb8d1d4bfc53bce2796dfc53891.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')
| -rw-r--r-- | cpp/include/qpid/management/ManagementObject.h | 12 |
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; |
