debian/libbit-dev/usr/include/bit-0.3/bit/fieldtype.h

00001 /***************************************************************************
00002 *   Copyright (C) 2001 by Rick L. Vinyard, Jr.                            *
00003 *   rvinyard@cs.nmsu.edu                                                  *
00004 *                                                                         *
00005 *   This program is free software; you can redistribute it and/or modify  *
00006 *   it under the terms of the GNU Lesser General Public License as        *
00007 *   published by the Free Software Foundation version 2.1.                *
00008 *                                                                         *
00009 *   This program is distributed in the hope that it will be useful,       *
00010 *   but WITHOUT ANY WARRANTY; without even the implied warranty of        *
00011 *   MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the         *
00012 *   GNU General Public License for more details.                          *
00013 *                                                                         *
00014 *   You should have received a copy of the GNU Lesser General Public      *
00015 *   License along with this library; if not, write to the                 *
00016 *   Free Software Foundation, Inc.,                                       *
00017 *   51 Franklin St, Fifth Floor, Boston, MA  02110-1301  USA              *
00018 ***************************************************************************/
00019 #ifndef BITFIELDTYPE_H
00020 #define BITFIELDTYPE_H
00021 
00022 #include <string>
00023 
00024 #include <bit/enums.h>
00025 
00026 namespace bit {
00027 
00031 class FieldType{
00032 public:
00033 
00034   FieldType(Type type=TYPE_NONE, ByteOrder byte_order=BYTEORDER_NETWORK, Sign sign=SIGN_UNSIGNED);
00035 
00036     ~FieldType();
00037 
00038     Type type() const;
00039     void set_type(Type);
00040     const char* type_string() const;
00041 
00042     ByteOrder byte_order() const;
00043     void set_byte_order(ByteOrder);
00044     const char* byte_order_string() const;
00045 
00046     Sign sign() const;
00047     void set_sign(Sign);
00048     const char* sign_string() const;
00049 
00050     static const char* type_string(Type);
00051     static const char* byte_order_string(ByteOrder);
00052     static const char* sign_string(Sign);
00053 
00054   bool operator==(const FieldType& other) const;
00055 
00056   bool operator!=(const FieldType& other) const;
00057 
00058   const std::string& xml();
00059 
00060   protected:
00061     Type m_type;
00062     ByteOrder m_byte_order;
00063     Sign m_sign;
00064     std::string m_xml;
00065 
00066     static const char* m_type_string[];
00067     static const char* m_byte_order_string[];
00068     static const char* m_sign_string[];
00069 };
00070 
00071 }
00072 
00073 #endif

Generated on Tue Mar 13 20:00:01 2007 by  doxygen 1.5.1