Main Page   Class Hierarchy   Alphabetical List   Data Structures   File List   Data Fields  

streams.Marshalltools.h

00001 /*----------------------------------------------------------------------------
00002   SWORD 2000 - Software With Objects for Rapid Development
00003   Copyright (C) 2003 Eric NICOLAS
00004   ----------------------------------------------------------------------------
00005   SWORD is free software; you can redistribute it and/or modify
00006   it under the terms of the GNU Lesser General Public License as published by
00007   the Free Software Foundation; either version 2 of the License, or
00008   (at your option) any later version.
00009 
00010   SWORD is distributed in the hope that it will be useful,
00011   but WITHOUT ANY WARRANTY; without even the implied warranty of
00012   MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
00013   GNU Lesser General Public License for more details.
00014 
00015   You should have received a copy of the GNU Lesser General Public License
00016   along with SWORD; if not, write to the Free Software
00017   Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA  02111-1307  USA
00018   --------------------------------------------------------------------------*/
00019 #ifndef _SWORD_STREAMS_MARSHALLTOOLS_
00020 #define _SWORD_STREAMS_MARSHALLTOOLS_
00021 
00022 namespace sword {
00023 
00024         class MarshallTools {
00025         public:
00026                 static void byteswap(word8& b1, word8& b2);
00027 
00028                 union Converter16 {
00029                         struct {
00030                                 word8 b1;
00031                                 word8 b2;
00032                         } asBytes;
00033                         int16  asInt16;
00034                         word16 asWord16;
00035                 };
00036 
00037                 union Converter32 {
00038                         struct {
00039                                 word8 b1;
00040                                 word8 b2;
00041                                 word8 b3;
00042                                 word8 b4;
00043                         } asBytes;
00044                         int32   asInt32;
00045                         word32  asWord32;
00046                         float32 asFloat32;
00047                 };
00048 
00049                 union Converter64{
00050                         struct {
00051                                 word8 b1;
00052                                 word8 b2;
00053                                 word8 b3;
00054                                 word8 b4;
00055                                 word8 b5;
00056                                 word8 b6;
00057                                 word8 b7;
00058                                 word8 b8;
00059                         } asBytes;
00060                         int64   asInt64;
00061                         word64  asWord64;
00062                         float64 asFloat64;
00063                 };
00064         };
00065 
00066 } // namespace sword
00067 
00068 #include "sword.private/streams.Marshalltools.inl"
00069 
00070 #endif // _SWORD_STREAMS_MARSHALLTOOLS_

Generated on Tue Dec 23 20:08:56 2003 for SWORD by doxygen1.3-rc2