vcl_rel_ops.h

来自「DTMK软件开发包,此为开源软件,是一款很好的医学图像开发资源.」· C头文件 代码 · 共 17 行

H
17
字号
#ifndef vcl_emulation_rel_ops_h_
#define vcl_emulation_rel_ops_h_

template <class T>
inline bool operator!=(const T& x, const T& y) { return !(x == y); }

template <class T>
inline bool operator> (const T& x, const T& y) { return  (y <  x); }

template <class T>
inline bool operator<=(const T& x, const T& y) { return !(y <  x); }

template <class T>
inline bool operator>=(const T& x, const T& y) { return !(x <  y); }

#endif // vcl_emulation_rel_ops_h_

⌨️ 快捷键说明

复制代码Ctrl + C
搜索代码Ctrl + F
全屏模式F11
增大字号Ctrl + =
减小字号Ctrl + -
显示快捷键?