Searched refs:CFX_PTemplate (Results 1 – 1 of 1) sorted by relevance
20 class CFX_PTemplate {22 CFX_PTemplate() : x(0), y(0) {} in CFX_PTemplate() function23 CFX_PTemplate(BaseType new_x, BaseType new_y) : x(new_x), y(new_y) {} in CFX_PTemplate() function24 CFX_PTemplate(const CFX_PTemplate& other) : x(other.x), y(other.y) {} in CFX_PTemplate() function26 CFX_PTemplate& operator=(const CFX_PTemplate& other) {33 bool operator==(const CFX_PTemplate& other) const {36 bool operator!=(const CFX_PTemplate& other) const {39 CFX_PTemplate& operator+=(const CFX_PTemplate<BaseType>& obj) {44 CFX_PTemplate& operator-=(const CFX_PTemplate<BaseType>& obj) {49 CFX_PTemplate operator+(const CFX_PTemplate& other) const {[all …]