ReactOS 0.4.15-dev-7842-g558ab78
SortClass.h File Reference
#include "Prefix.h"
#include "TestClass.h"
Include dependency graph for SortClass.h:
This graph shows which files directly or indirectly include this file:

Go to the source code of this file.

Classes

class  SortClass
 

Functions

bool operator> (const SortClass &lhs, const SortClass &rhs)
 
bool operator<= (const SortClass &lhs, const SortClass &rhs)
 
bool operator>= (const SortClass &lhs, const SortClass &rhs)
 
bool operator!= (const SortClass &lhs, const SortClass &rhs)
 

Function Documentation

◆ operator!=()

bool operator!= ( const SortClass lhs,
const SortClass rhs 
)
inline

Definition at line 70 of file SortClass.h.

70 {
71 return !(lhs == rhs);
72}

◆ operator<=()

bool operator<= ( const SortClass lhs,
const SortClass rhs 
)
inline

Definition at line 62 of file SortClass.h.

62 {
63 return !(rhs < lhs);
64}

◆ operator>()

bool operator> ( const SortClass lhs,
const SortClass rhs 
)
inline

Definition at line 58 of file SortClass.h.

58 {
59 return rhs < lhs;
60}

◆ operator>=()

bool operator>= ( const SortClass lhs,
const SortClass rhs 
)
inline

Definition at line 66 of file SortClass.h.

66 {
67 return !(lhs < rhs);
68}