diff options
author | Andrew Stitcher <astitcher@apache.org> | 2007-10-16 16:31:58 +0000 |
---|---|---|
committer | Andrew Stitcher <astitcher@apache.org> | 2007-10-16 16:31:58 +0000 |
commit | 3bd61c1fa1a748789707b502ada85200f6180f5b (patch) | |
tree | 87d2601a28cb8aae8d53f0132660d3f42d743dd9 /cpp/src | |
parent | da9cd2216e40ce160cbddf6c3884890fab31798d (diff) | |
download | qpid-python-3bd61c1fa1a748789707b502ada85200f6180f5b.tar.gz |
Include declarations of the specialisations we define to make sure they are picked up correctly by everything
git-svn-id: https://svn.apache.org/repos/asf/incubator/qpid/trunk/qpid@585190 13f79535-47bb-0310-9956-ffa450edef68
Diffstat (limited to 'cpp/src')
-rw-r--r-- | cpp/src/qpid/framing/FieldValue.h | 16 |
1 files changed, 16 insertions, 0 deletions
diff --git a/cpp/src/qpid/framing/FieldValue.h b/cpp/src/qpid/framing/FieldValue.h index b26021d6fa..01ba229f9b 100644 --- a/cpp/src/qpid/framing/FieldValue.h +++ b/cpp/src/qpid/framing/FieldValue.h @@ -120,6 +120,22 @@ class FixedWidthValue<0> : public FieldValue::Data { void print(std::ostream& o) const { o << "F0"; }; }; +template<> FixedWidthValue<8>::FixedWidthValue(uint64_t v); +template<> int64_t FixedWidthValue<8>::getInt() const; +template<> bool FixedWidthValue<8>::convertsToInt() const; + +template<> int64_t FixedWidthValue<4>::getInt() const; +template<> FixedWidthValue<4>::FixedWidthValue(uint64_t v); +template<> bool FixedWidthValue<4>::convertsToInt() const; + +template<> FixedWidthValue<2>::FixedWidthValue(uint64_t v); +template<> int64_t FixedWidthValue<2>::getInt() const; +template<> bool FixedWidthValue<2>::convertsToInt() const; + +template<> FixedWidthValue<1>::FixedWidthValue(uint64_t v); +template<> int64_t FixedWidthValue<1>::getInt() const; +template<> bool FixedWidthValue<1>::convertsToInt() const; + template <int lenwidth> class VariableWidthValue : public FieldValue::Data { std::vector<uint8_t> octets; |