Qpid Proton C++  0.17.0
scalar.hpp
1 #ifndef PROTON_SCALAR_HPP
2 #define PROTON_SCALAR_HPP
3 
4 /*
5  * Licensed to the Apache Software Foundation (ASF) under one
6  * or more contributor license agreements. See the NOTICE file
7  * distributed with this work for additional information
8  * regarding copyright ownership. The ASF licenses this file
9  * to you under the Apache License, Version 2.0 (the
10  * "License"); you may not use this file except in compliance
11  * with the License. You may obtain a copy of the License at
12  *
13  * http://www.apache.org/licenses/LICENSE-2.0
14  *
15  * Unless required by applicable law or agreed to in writing,
16  * software distributed under the License is distributed on an
17  * "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY
18  * KIND, either express or implied. See the License for the
19  * specific language governing permissions and limitations
20  * under the License.
21  */
22 
23 #include "./scalar_base.hpp"
24 
25 #include <proton/type_compat.h>
26 
27 namespace proton {
28 
32 class scalar : public scalar_base {
33  public:
35  PN_CPP_EXTERN scalar() {}
36 
38  template <class T> scalar(const T& x) { *this = x; }
39 
41  template <class T> scalar& operator=(const T& x) { put(x); return *this; }
42 
44  void clear() { *this = null(); }
45 };
46 
55 template<class T> T get(const scalar& s) { return internal::get<T>(s); }
56 
67 template<class T> T coerce(const scalar& x) { return internal::coerce<T>(x); }
68 
69 
80 template<class T> T coerce(scalar& x) { return internal::coerce<T>(x); }
81 
82 } // proton
83 
84 #endif // PROTON_SCALAR_HPP
A holder for an instance of any scalar AMQP type.
Definition: scalar.hpp:32
T coerce(const scalar &x)
Coerce the contained value to type T.
Definition: scalar.hpp:67
T coerce(scalar &x)
Coerce the contained value to type T.
Definition: scalar.hpp:80
Base class for scalar types.
Definition: scalar_base.hpp:57
scalar & operator=(const T &x)
Assign from any scalar type.
Definition: scalar.hpp:41
void clear()
Clear the scalar, making it empty().
Definition: scalar.hpp:44
scalar(const T &x)
Construct from any scalar type.
Definition: scalar.hpp:38
scalar()
Create an empty scalar.
Definition: scalar.hpp:35
The main Proton namespace.
Definition: annotation_key.hpp:30