コード例 #1
0
ファイル: makedict.cpp プロジェクト: crishoj/dep_feat
tchildrencount count()
    {
    if(next)
        return 1 + next->count();
    else
        return 1;
    }