xyz.h
Go to the documentation of this file.00001
00002
00003
00004
00005
00006
00007
00008
00009
00010
00011
00012
00013
00014
00015
00016
00017
00018
00019
00020
00021
00022
00023
00024
00025
00026
00027
00028
00029
00030
00031
00032
00033
00034
00035
00036
00037
00038
00039
00040
00041
00042
00043
00044
00045
00046
00047
00048
00049
00050 #ifndef LASS_GUARDIAN_OF_INCLUSION_PRIM_XYZ_H
00051 #define LASS_GUARDIAN_OF_INCLUSION_PRIM_XYZ_H
00052
00053 #include "prim_common.h"
00054 #include "../num/modulo.h"
00055
00056 namespace lass
00057 {
00058 namespace prim
00059 {
00060
00061 class LASS_DLL XYZ
00062 {
00063 public:
00064
00065
00066 enum { dimension = 3 };
00067
00068 XYZ();
00069 XYZ(char iAxis);
00070 explicit XYZ(int iValue);
00071 explicit XYZ(const std::string& iAxis);
00072
00073 const char axis() const;
00074 operator int() const { return value_; }
00075
00076
00077 XYZ& operator++();
00078 XYZ& operator--();
00079 XYZ operator++(int);
00080 XYZ operator--(int);
00081
00082 XYZ& operator+=(int iOffset);
00083 XYZ& operator-=(int iOffset);
00084
00085 private:
00086
00087 typedef num::Modulo<3, int> TValue;
00088
00089 friend LASS_DLL bool LASS_CALL operator==(const XYZ& iA, const XYZ& iB);
00090
00091 void reset(char iAxis);
00092
00093 TValue value_;
00094 };
00095
00096 LASS_DLL bool LASS_CALL operator==(const XYZ& iA, const XYZ& iB);
00097 LASS_DLL bool LASS_CALL operator==(const XYZ& iA, char iB);
00098 LASS_DLL bool LASS_CALL operator==(char iA, const XYZ& iB);
00099 LASS_DLL bool LASS_CALL operator==(const XYZ& iA, const std::string& iB);
00100 LASS_DLL bool LASS_CALL operator==(const std::string& iA, const XYZ& iB);
00101
00102 LASS_DLL bool LASS_CALL operator!=(const XYZ& iA, const XYZ& iB);
00103 LASS_DLL bool LASS_CALL operator!=(const XYZ& iA, char iB);
00104 LASS_DLL bool LASS_CALL operator!=(char iA, const XYZ& iB);
00105 LASS_DLL bool LASS_CALL operator!=(const XYZ& iA, const std::string& iB);
00106 LASS_DLL bool LASS_CALL operator!=(const std::string& iA, const XYZ& iB);
00107
00108 LASS_DLL XYZ LASS_CALL operator+(const XYZ& iA, int iOffset);
00109 LASS_DLL XYZ LASS_CALL operator-(const XYZ& iA, int iOffset);
00110
00111
00112
00113 template <typename Char, typename Traits>
00114 std::basic_ostream<Char, Traits>& operator<<(std::basic_ostream<Char, Traits>& ioS, const XYZ& iXYZ)
00115 {
00116 ioS << iXYZ.axis();
00117 return ioS;
00118 }
00119
00120
00121
00122 }
00123
00124 }
00125
00126 #define LASS_PRIM_HAVE_PY_EXPORT_TRAITS_XYZ
00127 #ifdef LASS_GUARDIAN_OF_INCLUSION_UTIL_PYOBJECT_PLUS_H
00128 # include "pyobject_util.h"
00129 #endif
00130
00131 #endif
00132
00133