Exemplo n.º 1
0
bool DAction::operator== ( const DAction& ac ) const
{
    if ( * ( ac.templ ) == * ( templ ) )
        return hash() == ac.hash();

    return false;
}
Exemplo n.º 2
0
bool DAction::operator< ( const DAction& ac ) const
{
    return hash() < ac.hash();
}