torc-master
|
#include <Value.hpp>
Public Member Functions | |
Point () | |
Point (int32_t inX, int32_t inY) | |
~Point () throw () | |
Point (const Point &inSource) | |
Point & | operator= (const Point &inSource) |
bool | operator< (const Point &inRhs) const |
bool | operator== (const Point &inRhs) const |
bool | operator!= (const Point &inRhs) const |
bool | operator> (const Point &inRhs) const |
bool | operator>= (const Point &inRhs) const |
bool | operator<= (const Point &inRhs) const |
const int32_t | getX () const |
void | setX (const int32_t &inSource) |
const int32_t | getY () const |
void | setY (const int32_t &inSource) |
Private Attributes | |
int32_t | mX |
int32_t | mY |
Represents a point in cartesian coordinates. This stores the X and Y coordinates.
torc::generic::Value::Point::Point | ( | int32_t | inX, |
int32_t | inY | ||
) |
torc::generic::Value::Point::Point | ( | const Point & | inSource | ) |
|
inline |
|
inline |
bool torc::generic::Value::Point::operator!= | ( | const Point & | inRhs | ) | const |
Definition at line 182 of file Value.cpp.
bool torc::generic::Value::Point::operator< | ( | const Point & | inRhs | ) | const |
bool torc::generic::Value::Point::operator<= | ( | const Point & | inRhs | ) | const |
Value::Point & torc::generic::Value::Point::operator= | ( | const Point & | inSource | ) |
bool torc::generic::Value::Point::operator== | ( | const Point & | inRhs | ) | const |
bool torc::generic::Value::Point::operator> | ( | const Point & | inRhs | ) | const |
bool torc::generic::Value::Point::operator>= | ( | const Point & | inRhs | ) | const |
void torc::generic::Value::Point::setX | ( | const int32_t & | inSource | ) |
void torc::generic::Value::Point::setY | ( | const int32_t & | inSource | ) |