00001
00002
00003
00004
00005
00006
00007 #ifndef COH_SIZE32_HPP
00008 #define COH_SIZE32_HPP
00009
00010 #include "coherence/lang/compatibility.hpp"
00011
00012 #include "coherence/lang/Primitive.hpp"
00013 #include "coherence/lang/TypedHandle.hpp"
00014
00015 COH_OPEN_NAMESPACE2(coherence,lang)
00016
00017
00018
00019
00020
00021
00022
00023 class COH_EXPORT Size32
00024 : public cloneable_spec<Size32,
00025 extends<Primitive<size32_t> >,
00026 implements<Comparable> >
00027 {
00028 friend class factory<Size32>;
00029
00030
00031
00032 private:
00033
00034
00035
00036
00037
00038
00039
00040 Size32(size32_t n);
00041
00042
00043
00044
00045 Size32(const Size32& that);
00046
00047
00048
00049
00050 public:
00051
00052
00053
00054 virtual int32_t compareTo(Object::View v) const;
00055
00056
00057
00058
00059 public:
00060
00061
00062
00063
00064
00065
00066
00067
00068 static Handle valueOf(size32_t n);
00069
00070
00071
00072
00073 public:
00074
00075
00076
00077 static const size32_t min_value = 0x00000000;
00078
00079
00080
00081
00082 static const size32_t max_value = 0xFFFFFFFF;
00083 };
00084
00085 COH_CLOSE_NAMESPACE2
00086
00087 #endif // COH_SIZE32_HPP