00001
00002
00003
00004
00005
00006
00007
00008
00009
00010
00011
00012
00013
00014
00015
00016
00017
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