| 11 | using namespace ci; |
| 12 | |
| 13 | struct CustomType { |
| 14 | CustomType() {} |
| 15 | CustomType( int v ) : var( v ) {} |
| 16 | bool operator==( const CustomType &rhs ) const { return rhs.var == var; } |
| 17 | |
| 18 | int var; |
| 19 | }; |
| 20 | |
| 21 | std::ostream& operator<<( std::ostream &o, CustomType const &t ) |
| 22 | { |