#include <TAPsWXDialogPersonalRecord.hpp>

Public Member Functions | |
| bool | operator< (Skeleton< T > const &v) const |
| bool | operator<= (Skeleton< T > const &v) const |
| Skeleton< T > & | operator= (Skeleton< T > const &v) |
| Assignment Operator. | |
| bool | operator== (Skeleton< T > const &v) const |
| Comparison Operators. | |
| bool | operator> (Skeleton< T > const &v) const |
| bool | operator>= (Skeleton< T > const &v) const |
| Skeleton (Skeleton< T > const &v) | |
| constructor by an array | |
| Skeleton (T a[3]) | |
| default constructor | |
| Skeleton (T x=T(), T y=T(), T z=T()) | |
| Constructors. | |
| virtual std::string | StrInfo () const |
| destructor | |
| ~Skeleton () | |
| copy constructor | |
Static Public Member Functions | |
| static int | Dominate (Skeleton< T > const &a, Skeleton< T > const &b) |
Protected Attributes | |
| T | m_tX |
| T | m_tY |
| T | m_tZ |
Friends | |
| std::ostream & | operator<< (std::ostream &output, Skeleton< T > const &obj) |
| Output Operator <<. | |
Definition at line 18 of file TAPsWXDialogPersonalRecord.hpp.
| BEGIN_NAMESPACE_TAPs Skeleton< T >::Skeleton | ( | T | x = T(), |
|
| T | y = T(), |
|||
| T | z = T() | |||
| ) | [inline] |
| int Skeleton< T >::Dominate | ( | Skeleton< T > const & | a, | |
| Skeleton< T > const & | b | |||
| ) | [inline, static] |
Find the dominate Skeleton between Skeleton a and Skeleton b: return 1 if a dominates b return -1 if b dominates a return 0 if neither dominates the other
Definition at line 106 of file TAPsWXDialogPersonalRecord.cpp.
Definition at line 66 of file TAPsWXDialogPersonalRecord.cpp.
00067 { 00068 if ( m_tX > v.m_tX ) return false; 00069 if ( m_tY > v.m_tY ) return false; 00070 if ( m_tZ > v.m_tZ ) return false; 00071 if ( m_tX < v.m_tX ) return true; 00072 if ( m_tY < v.m_tY ) return true; 00073 if ( m_tZ < v.m_tZ ) return true; 00074 }
Definition at line 86 of file TAPsWXDialogPersonalRecord.cpp.
00087 { 00088 if ( m_tX < v.m_tX ) return false; 00089 if ( m_tY < v.m_tY ) return false; 00090 if ( m_tZ < v.m_tZ ) return false; 00091 if ( m_tX > v.m_tX ) return true; 00092 if ( m_tY > v.m_tY ) return true; 00093 if ( m_tZ > v.m_tZ ) return true; 00094 }
| virtual std::string Skeleton< T >::StrInfo | ( | ) | const [virtual] |
destructor
Return this object info as a string
| std::ostream& operator<< | ( | std::ostream & | output, | |
| Skeleton< T > const & | obj | |||
| ) | [friend] |
Output Operator <<.
Definition at line 23 of file TAPsWXDialogPersonalRecord.hpp.
00024 { 00025 output << obj.StrInfo(); 00026 return output; 00027 }
Definition at line 60 of file TAPsWXDialogPersonalRecord.hpp.
Definition at line 60 of file TAPsWXDialogPersonalRecord.hpp.
Definition at line 60 of file TAPsWXDialogPersonalRecord.hpp.
1.5.6