Exemple #1
0
tchildrencount count()
    {
    if(next)
        return 1 + next->count();
    else
        return 1;
    }