MCPcopy Create free account
hub / github.com/ImageEngine/cortex / HashNode

Class HashNode

src/IECore/PathMatcher.cpp:759–775  ·  view source on GitHub ↗

Source from the content-addressed store, hash-verified

757//////////////////////////////////////////////////////////////////////////
758
759struct HashNode
760{
761
762 HashNode( const char *name, unsigned char exactMatch )
763 : name( name ), exactMatch( exactMatch )
764 {
765 }
766
767 bool operator < ( const HashNode &rhs ) const
768 {
769 return strcmp( name, rhs.name ) < 0;
770 }
771
772 const char *name;
773 unsigned char exactMatch;
774
775};
776
777typedef std::vector<HashNode> HashNodes;
778typedef std::stack<HashNodes> HashStack;

Callers 1

murmurHashAppendMethod · 0.85

Calls

no outgoing calls

Tested by

no test coverage detected