Searched defs:Pet (Results 1 - 1 of 1) sorted by relevance

/inkscape/cxxtest/sample/
H A DTraitsTest.h16 class Pet class
20 Pet( const char *petName ) { strcpy( _name, petName ); } function in class:Pet
24 bool operator== ( const Pet &other ) const
38 class ValueTraits<const Pet>
43 ValueTraits( const Pet &pet ) { sprintf( _asString, "Pet(\"%s\")", pet.name() ); }
47 CXXTEST_COPY_CONST_TRAITS( Pet );
58 Pet pet1("dog"), pet2("cat");
60 Pet cat("cat"), gato("cat");

Completed in 54 milliseconds