Exemple #1
0
Shard *Shard::top()
{
    Shard *top = this;
    while (top->parent()) top = top->parent();
    return top;
}