Single.h

Go to the documentation of this file.
00001 /***************************************************************************
00002  *
00003  * Copyright (C) 2009-2011 Cassio Neri Moreira
00004  *
00005  * This file is part of the KeyValue library.
00006  *
00007  * The KeyValue library is free software; you can redistribute it and/or
00008  * modify it under the terms of the GNU General Public License as published
00009  * by the Free Software Foundation, either version 3 of the License, or (at
00010  * your option) any later version.
00011  *
00012  * The KeyValue library is distributed in the hope that it will be useful,
00013  * but WITHOUT ANY WARRANTY; without even the implied warranty of
00014  * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU General
00015  * Public License for more details.
00016  *
00017  * You should have received a copy of the GNU General Public License along
00018  * with KeyValue. If not, see <http://www.gnu.org/licenses/>.
00019  *
00020  * If you modify this library, or any covered work, by linking or combining
00021  * it with Excel (or a modified version of that program), containing parts
00022  * covered by the terms of End-User License Agreement for Microsoft
00023  * Software, the licensors of KeyValue grant you additional permission to
00024  * convey the resulting work.
00025  *
00026  **************************************************************************/
00027 
00034 #ifndef KEYVALUE_VALUE_SINGLE_H_
00035 #define KEYVALUE_VALUE_SINGLE_H_
00036 
00037 #include <iosfwd>
00038 
00039 #include "keyvalue/value/Vector.h"
00040 
00041 namespace keyvalue {
00042 namespace value {
00043 
00051 class Single : public Vector {
00052 
00053 public:
00054 
00059   Single();
00060 
00068   Single(const Variant& data);
00069 
00077   template <typename Rhs>
00078   Single(const Rhs& rhs);
00079 
00089   template <typename Rhs>
00090   Single&
00091   operator=(const Rhs& rhs);
00092 
00093 }; // class Single
00094 
00100 ::std::ostream&
00101 operator<<(::std::ostream& os, const Single& rhs);
00102 
00112 template <typename Rhs>
00113 struct Parent;
00114 
00115 template <>
00116 struct Parent<Variant> {
00117   typedef Single Type_;
00118 };
00119 
00120 /*--------------------------------------------------------------------------
00121  * Single()
00122  *------------------------------------------------------------------------*/
00123 
00124 template <typename Rhs>
00125 Single::Single(const Rhs& rhs) : Vector(1) {
00126 
00127   /*
00128    * If you get an error here about 'keyvalue::value::Parent<Rhs>', this
00129    * means that Rhs isn't in a lower level in the hierarchy.
00130    */
00131 
00132   (*this)(0) = Variant(rhs);
00133 }
00134 
00135 /*--------------------------------------------------------------------------
00136  * operator=()
00137  *------------------------------------------------------------------------*/
00138 
00139 template <typename Rhs>
00140 Single&
00141 Single::operator=(const Rhs& rhs) {
00142 
00143   /*
00144    * If you get an error here about 'keyvalue::value::Parent<Rhs>', this
00145    * means that Rhs isn't in a lower level in the hierarchy.
00146    */
00147 
00148   return *this = typename Parent<Rhs>::Type_(rhs);
00149 }
00150 
00151 } // namespace value
00152 } // namespace keyvalue
00153 
00154 #endif // KEYVALUE_VALUE_SINGLE_H_