mirror of
https://github.com/nasa/fpp.git
synced 2025-12-16 05:15:08 -06:00
10 lines
136 B
C++
10 lines
136 B
C++
#include "T.hpp"
|
|
|
|
bool T::operator==(const T& obj) const {
|
|
return true;
|
|
}
|
|
|
|
bool T::operator!=(const T& obj) const {
|
|
return false;
|
|
}
|