MCPcopy Create free account
hub / github.com/cinder/Cinder / CustomType

Class CustomType

test/unit/src/Utilities.cpp:13–19  ·  view source on GitHub ↗

Source from the content-addressed store, hash-verified

11using namespace ci;
12
13struct 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
21std::ostream& operator<<( std::ostream &o, CustomType const &t )
22{

Callers 1

Utilities.cppFile · 0.85

Calls

no outgoing calls

Tested by

no test coverage detected