QxOrm
1.5.0
C++ Object Relational Mapping library
|
00001 /**************************************************************************** 00002 ** 00003 ** https://www.qxorm.com/ 00004 ** Copyright (C) 2013 Lionel Marty (contact@qxorm.com) 00005 ** 00006 ** This file is part of the QxOrm library 00007 ** 00008 ** This software is provided 'as-is', without any express or implied 00009 ** warranty. In no event will the authors be held liable for any 00010 ** damages arising from the use of this software 00011 ** 00012 ** Commercial Usage 00013 ** Licensees holding valid commercial QxOrm licenses may use this file in 00014 ** accordance with the commercial license agreement provided with the 00015 ** Software or, alternatively, in accordance with the terms contained in 00016 ** a written agreement between you and Lionel Marty 00017 ** 00018 ** GNU General Public License Usage 00019 ** Alternatively, this file may be used under the terms of the GNU 00020 ** General Public License version 3.0 as published by the Free Software 00021 ** Foundation and appearing in the file 'license.gpl3.txt' included in the 00022 ** packaging of this file. Please review the following information to 00023 ** ensure the GNU General Public License version 3.0 requirements will be 00024 ** met : http://www.gnu.org/copyleft/gpl.html 00025 ** 00026 ** If you are unsure which license is appropriate for your use, or 00027 ** if you have questions regarding the use of this file, please contact : 00028 ** contact@qxorm.com 00029 ** 00030 ****************************************************************************/ 00031 00032 #ifndef _QX_SERIALIZE_QDATASTREAM_STD_MAP_H_ 00033 #define _QX_SERIALIZE_QDATASTREAM_STD_MAP_H_ 00034 00035 #ifdef _MSC_VER 00036 #pragma once 00037 #endif 00038 00046 #include <QtCore/qdatastream.h> 00047 00048 #include <map> 00049 00050 template <typename Key, typename Value> 00051 QDataStream & operator<< (QDataStream & stream, const std::map<Key, Value> & t) 00052 { 00053 typedef typename std::map<Key, Value>::const_iterator type_itr; 00054 quint64 uiSize = static_cast<quint64>(t.size()); 00055 stream << uiSize; 00056 00057 for (type_itr itr = t.begin(); itr != t.end(); ++itr) 00058 { 00059 stream << itr->first; 00060 stream << itr->second; 00061 } 00062 00063 return stream; 00064 } 00065 00066 template <typename Key, typename Value> 00067 QDataStream & operator>> (QDataStream & stream, std::map<Key, Value> & t) 00068 { 00069 quint64 uiSize = 0; 00070 stream >> uiSize; 00071 t.clear(); 00072 00073 for (quint64 i = 0; i < uiSize; ++i) 00074 { 00075 Key key; stream >> key; 00076 Value value; stream >> value; 00077 t.insert(std::make_pair(key, value)); 00078 } 00079 00080 return stream; 00081 } 00082 00083 #endif // _QX_SERIALIZE_QDATASTREAM_STD_MAP_H_