00001 #if !defined(__MCSERIALIZER_H_) 00002 #define __MCSERIALIZER_H_ 00003 00004 #ident "@(#)$Id: MCSerializer.h,v 1.3 2003/05/12 07:07:58 mike Exp $" 00005 00006 /* 00007 * Copyright Miba Consulting Ltd. (c) 2000-2003 00008 * 00009 * This library is free software; you can redistribute it and/or 00010 * modify it under the terms of the GNU Lesser General Public 00011 * License as published by the Free Software Foundation; either 00012 * version 2.1 of the License, or (at your option) any later version. 00013 * 00014 * This library is distributed in the hope that it will be useful, 00015 * but WITHOUT ANY WARRANTY; without even the implied warranty of 00016 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU 00017 * Lesser General Public License for more details. 00018 * 00019 * You should have received a copy of the GNU Lesser General Public 00020 * License along with this library; if not, write to the Free Software 00021 * Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA 00022 * 00023 */ 00024 00025 #include "mcllib/MCBase.h" 00026 #include "mcllib/MCTypes.h" 00027 #include "mcllib/MCString.h" 00028 00029 namespace mcllib 00030 { 00042 class MCSerializer : public MCBase { 00043 public: 00044 // Get from operators - read data from the serializer 00046 MCSerializer& operator>>(bool& data); 00048 MCSerializer& operator>>(mcint8& data); 00050 MCSerializer& operator>>(mcuint8& data); 00052 MCSerializer& operator>>(mcint16& data); 00054 MCSerializer& operator>>(mcuint16& data); 00056 MCSerializer& operator>>(mcint32& data); 00058 MCSerializer& operator>>(mcuint32& data); 00060 MCSerializer& operator>>(mcint64& data); 00062 MCSerializer& operator>>(mcuint64& data); 00064 MCSerializer& operator>>(mcfloat32& data); 00066 MCSerializer& operator>>(mcfloat64& data); 00068 MCSerializer& operator>>(MCString& data); 00069 00070 // Put to operators - write data to the serializer 00072 MCSerializer& operator<<(bool data); 00074 MCSerializer& operator<<(mcint8 data); 00076 MCSerializer& operator<<(mcuint8 data); 00078 MCSerializer& operator<<(mcint16 data); 00080 MCSerializer& operator<<(mcuint16 data); 00082 MCSerializer& operator<<(mcint32 data); 00084 MCSerializer& operator<<(mcuint32 data); 00086 MCSerializer& operator<<(mcint64 data); 00088 MCSerializer& operator<<(mcuint64 data); 00090 MCSerializer& operator<<(mcfloat32 data); 00092 MCSerializer& operator<<(mcfloat64 data); 00094 MCSerializer& operator<<(const MCString& data); 00095 00096 protected: 00101 MCSerializer(void* impl); 00102 }; 00103 }; 00104 00105 #endif